diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | libindicator/indicator.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 9900468..94dabc8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-applet (0.2.0~bzr300-0ubuntu1) UNRELEASED; urgency=low + + * Upstream snapshot, fixing indicator.h + + -- Ted Gould <ted@ubuntu.com> Wed, 22 Apr 2009 15:22:52 -0500 + indicator-applet (0.2.0~bzr299-0ubuntu1) jaunty; urgency=low * Upstream snapshot, forgot a + on GTK 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; |