From c0b1f48f8ca11d5a74c00ccfd46454217c629e24 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 22 Apr 2009 15:22:14 -0500 Subject: Oops, not what I wanted. These should have been prototypes not global variables. Takes a second to think about it, but yeah, that's what they were. --- libindicator/indicator.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libindicator') diff --git a/libindicator/indicator.h b/libindicator/indicator.h index 6940dfb..96b6d04 100644 --- a/libindicator/indicator.h +++ b/libindicator/indicator.h @@ -6,15 +6,15 @@ #define INDICATOR_GET_LABEL_S "get_label" typedef GtkLabel * (*get_label_t)(void); -get_label_t get_label; +GtkLabel * get_label (void); #define INDICATOR_GET_ICON_S "get_icon" typedef GtkImage * (*get_icon_t) (void); -get_icon_t get_icon; +GtkImage * get_icon (void); #define INDICATOR_GET_MENU_S "get_menu" typedef GtkMenu * (*get_menu_t) (void); -get_menu_t get_menu; +GtkMenu * get_menu (void); #define INDICATOR_VERSION "0.2.0" #define INDICATOR_SET_VERSION static gchar * indicator_version_symbol = INDICATOR_VERSION; -- cgit v1.2.3