aboutsummaryrefslogtreecommitdiff
path: root/libindicator
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-03 23:17:33 -0600
committerTed Gould <ted@canonical.com>2009-11-03 23:17:33 -0600
commit7db7886923d8df734ccb9c300db8bd4a2ebf6e33 (patch)
treee7b8724e169e55c71d2d5eb634cc65090baf7b23 /libindicator
parent0db39bf65d1007924bded3d48d928a1a7c034581 (diff)
downloadlibayatana-indicator-7db7886923d8df734ccb9c300db8bd4a2ebf6e33.tar.gz
libayatana-indicator-7db7886923d8df734ccb9c300db8bd4a2ebf6e33.tar.bz2
libayatana-indicator-7db7886923d8df734ccb9c300db8bd4a2ebf6e33.zip
Adding in some ID helpers.
Diffstat (limited to 'libindicator')
-rw-r--r--libindicator/indicator-object.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libindicator/indicator-object.h b/libindicator/indicator-object.h
index 1ac39b0..14f0db0 100644
--- a/libindicator/indicator-object.h
+++ b/libindicator/indicator-object.h
@@ -36,8 +36,10 @@ G_BEGIN_DECLS
#define INDICATOR_IS_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), INDICATOR_OBJECT_TYPE))
#define INDICATOR_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), INDICATOR_OBJECT_TYPE, IndicatorObjectClass))
-#define INDICATOR_OBJECT_SIGNAL_ENTRY_ADDED "entry-added"
-#define INDICATOR_OBJECT_SIGNAL_ENTRY_REMOVED "entry-removed"
+#define INDICATOR_OBJECT_SIGNAL_ENTRY_ADDED "entry-added"
+#define INDICATOR_OBJECT_SIGNAL_ENTRY_ADDED_ID (g_signal_lookup(INDICATOR_OBJECT_SIGNAL_ENTRY_ADDED, INDICATOR_TYPE_OBJECT))
+#define INDICATOR_OBJECT_SIGNAL_ENTRY_REMOVED "entry-removed"
+#define INDICATOR_OBJECT_SIGNAL_ENTRY_REMOVED_ID (g_signal_lookup(INDICATOR_OBJECT_SIGNAL_ENTRY_REMOVED, INDICATOR_TYPE_OBJECT))
typedef struct _IndicatorObject IndicatorObject;
typedef struct _IndicatorObjectClass IndicatorObjectClass;