diff options
author | Sense Egbert Hofstede <sense@ubuntu.com> | 2010-08-05 15:51:53 +0200 |
---|---|---|
committer | Sense Egbert Hofstede <sense@ubuntu.com> | 2010-08-05 15:51:53 +0200 |
commit | 247e5a1ac3f714f831bea27fa87170b0ac7fec64 (patch) | |
tree | 0d809ef9c73ef069fa7c43f83c202603c8edf80a /src/app-indicator.h | |
parent | 0a8c09e4f8ce284788845f465dcc826a67602cd0 (diff) | |
download | libayatana-appindicator-247e5a1ac3f714f831bea27fa87170b0ac7fec64.tar.gz libayatana-appindicator-247e5a1ac3f714f831bea27fa87170b0ac7fec64.tar.bz2 libayatana-appindicator-247e5a1ac3f714f831bea27fa87170b0ac7fec64.zip |
Passing the updated icon theme path along with the DBus signal, saving a DBus call.
Diffstat (limited to 'src/app-indicator.h')
-rw-r--r-- | src/app-indicator.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/app-indicator.h b/src/app-indicator.h index 3a17ba1..31b7a4a 100644 --- a/src/app-indicator.h +++ b/src/app-indicator.h @@ -171,14 +171,15 @@ struct _AppIndicatorClass { GObjectClass parent_class; /* DBus Signals */ - void (* new_icon) (AppIndicator *indicator, + void (* new_icon) (AppIndicator *indicator, gpointer user_data); - void (* new_attention_icon) (AppIndicator *indicator, + void (* new_attention_icon) (AppIndicator *indicator, gpointer user_data); - void (* new_status) (AppIndicator *indicator, - const gchar *status, + void (* new_status) (AppIndicator *indicator, + const gchar *status, gpointer user_data); - void (* new_icon_theme_path) (AppIndicator *indicator, + void (* new_icon_theme_path) (AppIndicator *indicator, + const gchar *icon_theme_path, gpointer user_data); /* Local Signals */ |