aboutsummaryrefslogtreecommitdiff
path: root/libindicator/indicator-object.h
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-03 13:40:10 -0600
committerTed Gould <ted@canonical.com>2009-11-03 13:40:10 -0600
commited409d4cb434272e2ec0110305d53a06735b00c4 (patch)
treef9e3fa54b6fba40c80a536c30669937bf6110004 /libindicator/indicator-object.h
parent0575b91145b07ecc7fc861bcb8648296fbd74bb4 (diff)
downloadlibayatana-indicator-ed409d4cb434272e2ec0110305d53a06735b00c4.tar.gz
libayatana-indicator-ed409d4cb434272e2ec0110305d53a06735b00c4.tar.bz2
libayatana-indicator-ed409d4cb434272e2ec0110305d53a06735b00c4.zip
Whew, blew up the interface and built it back again.
Diffstat (limited to 'libindicator/indicator-object.h')
-rw-r--r--libindicator/indicator-object.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libindicator/indicator-object.h b/libindicator/indicator-object.h
index 6637f05..cd8cc79 100644
--- a/libindicator/indicator-object.h
+++ b/libindicator/indicator-object.h
@@ -32,8 +32,8 @@ G_BEGIN_DECLS
#define INDICATOR_OBJECT_TYPE (indicator_object_get_type ())
#define INDICATOR_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), INDICATOR_OBJECT_TYPE, IndicatorObject))
#define INDICATOR_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), INDICATOR_OBJECT_TYPE, IndicatorObjectClass))
-#define IS_INDICATOR_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), INDICATOR_OBJECT_TYPE))
-#define IS_INDICATOR_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), INDICATOR_OBJECT_TYPE))
+#define INDICATOR_IS_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), INDICATOR_OBJECT_TYPE))
+#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))
typedef struct _IndicatorObject IndicatorObject;
@@ -68,15 +68,15 @@ struct _IndicatorObjectClass {
GObjectClass parent_class;
/* Virtual Functions */
- GtkLabel * get_label (IndicatorObject * io);
- GtkImage * get_image (IndicatorObject * io);
- GtkMenu * get_menu (IndicatorObject * io);
+ GtkLabel * (*get_label) (IndicatorObject * io);
+ GtkImage * (*get_image) (IndicatorObject * io);
+ GtkMenu * (*get_menu) (IndicatorObject * io);
- GList * get_entries (IndicatorObject * io);
+ GList * (*get_entries) (IndicatorObject * io);
/* Signals */
- void entry_added (IndicatorObject * io, IndicatorEntry * entry, gpointer user_data);
- void entry_removed (IndicatorObject * io, IndicatorEntry * entry, gpointer user_data);
+ void (*entry_added) (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer user_data);
+ void (*entry_removed) (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer user_data);
/* Reserved */
void (* indicator_object_reserved_1) (void);