aboutsummaryrefslogtreecommitdiff
path: root/libindicate/server.h
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-01-12 23:14:09 -0600
committerTed Gould <ted@canonical.com>2009-01-12 23:14:09 -0600
commit55256284a380043320b61b0f5f38741b083e94ab (patch)
tree5caa920ddfd443880aa111a44dd0e9f1bfe139e4 /libindicate/server.h
parentcd4f548dd5427b48706b29c17a8ea67d6360afd8 (diff)
downloadlibayatana-indicator-55256284a380043320b61b0f5f38741b083e94ab.tar.gz
libayatana-indicator-55256284a380043320b61b0f5f38741b083e94ab.tar.bz2
libayatana-indicator-55256284a380043320b61b0f5f38741b083e94ab.zip
Fleshing out more functions, we can now return a list of ids. Need to test with more.
Diffstat (limited to 'libindicate/server.h')
-rw-r--r--libindicate/server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicate/server.h b/libindicate/server.h
index 486252c..8a61293 100644
--- a/libindicate/server.h
+++ b/libindicate/server.h
@@ -40,7 +40,7 @@ struct _IndicateServerClass {
gboolean (*get_desktop) (IndicateServer * server, gchar ** desktop_path, GError **error);
gboolean (*get_indicator_count) (IndicateServer * server, guint * count, GError **error);
gboolean (*get_indicator_count_by_type) (IndicateServer * server, gchar * type, guint * count, GError **error);
- gboolean (*get_indicator_list) (IndicateServer * server, guint ** indicators, GError ** error);
+ gboolean (*get_indicator_list) (IndicateServer * server, GArray ** indicators, GError ** error);
gboolean (*get_indicator_list_by_type) (IndicateServer * server, gchar * type, guint ** indicators, GError ** error);
gboolean (*get_indicator_property) (IndicateServer * server, guint id, gchar * property, gchar ** value, GError **error);
gboolean (*get_indicator_property_group) (IndicateServer * server, guint id, gchar ** properties, gchar *** value, GError **error);
@@ -75,7 +75,7 @@ void indicate_server_set_default (IndicateServer * server);
gboolean indicate_server_get_desktop (IndicateServer * server, gchar ** desktop_path, GError **error);
gboolean indicate_server_get_indicator_count (IndicateServer * server, guint * count, GError **error);
gboolean indicate_server_get_indicator_count_by_type (IndicateServer * server, gchar * type, guint * count, GError **error);
-gboolean indicate_server_get_indicator_list (IndicateServer * server, guint ** indicators, GError ** error);
+gboolean indicate_server_get_indicator_list (IndicateServer * server, GArray ** indicators, GError ** error);
gboolean indicate_server_get_indicator_list_by_type (IndicateServer * server, gchar * type, guint ** indicators, GError ** error);
gboolean indicate_server_get_indicator_property (IndicateServer * server, guint id, gchar * property, gchar ** value, GError **error);
gboolean indicate_server_get_indicator_property_group (IndicateServer * server, guint id, gchar ** properties, gchar *** value, GError **error);