aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-22 15:23:13 -0500
committerTed Gould <ted@canonical.com>2009-04-22 15:23:13 -0500
commitfded83b01987532fba7e86bf7e73ced77b100238 (patch)
tree5f7f127258ee3bddd66302338e89d02876d730aa
parentd332ad5b67b7354881895420c6d79a373295dc45 (diff)
parentc0b1f48f8ca11d5a74c00ccfd46454217c629e24 (diff)
downloadlibayatana-indicator-fded83b01987532fba7e86bf7e73ced77b100238.tar.gz
libayatana-indicator-fded83b01987532fba7e86bf7e73ced77b100238.tar.bz2
libayatana-indicator-fded83b01987532fba7e86bf7e73ced77b100238.zip
Upstream snapshot, fixing indicator.h
-rw-r--r--debian/changelog6
-rw-r--r--libindicator/indicator.h6
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;