Changeset 2505
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/actions.c
r2445 r2505 16 16 #include "img_icon_full.h" 17 17 18 #ifdef __GNUC__ 19 #define UNUSED __attribute__((unused)) 20 #else 21 #define UNUSED 22 #endif 18 #define UNUSED G_GNUC_UNUSED 23 19 24 20 extern void doAction (const char * action_name, gpointer user_data ); -
trunk/gtk/util.h
r2208 r2505 30 30 31 31 /* macro to shut up "unused parameter" warnings */ 32 #ifdef __GNUC__ 33 #define SHUTUP __attribute__((unused)) 34 #define UNUSED __attribute__((unused)) 35 #else 36 #define SHUTUP 37 #define UNUSED 38 #endif 32 #define SHUTUP G_GNUC_UNUSED 33 #define UNUSED G_GNUC_UNUSED 39 34 40 35 /* NULL-safe version of strcmp */
Note: See TracChangeset
for help on using the changeset viewer.