diff options
| author | Ted Gould <ted@canonical.com> | 2009-04-22 15:23:13 -0500 |
|---|---|---|
| committer | Ted Gould <ted@canonical.com> | 2009-04-22 15:23:13 -0500 |
| commit | fded83b01987532fba7e86bf7e73ced77b100238 (patch) | |
| tree | 5f7f127258ee3bddd66302338e89d02876d730aa /libindicator/indicator.h | |
| parent | d332ad5b67b7354881895420c6d79a373295dc45 (diff) | |
| parent | c0b1f48f8ca11d5a74c00ccfd46454217c629e24 (diff) | |
| download | libayatana-indicator-fded83b01987532fba7e86bf7e73ced77b100238.tar.gz libayatana-indicator-fded83b01987532fba7e86bf7e73ced77b100238.tar.bz2 libayatana-indicator-fded83b01987532fba7e86bf7e73ced77b100238.zip | |
Upstream snapshot, fixing indicator.h
Diffstat (limited to 'libindicator/indicator.h')
| -rw-r--r-- | libindicator/indicator.h | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
