diff options
author | Ted Gould <ted@gould.cx> | 2010-10-08 15:55:30 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-10-08 15:55:30 -0600 |
commit | 50440e60b3089bde091776f0c2551cc0182ba33c (patch) | |
tree | 4bf937c24fe06ab89f5577f4dd42444877200fd3 /src/application-service-watcher.h | |
parent | fe08c86fc6b9d9d843149bf195b995d7e38a2c40 (diff) | |
parent | ea206ef1316942b005fd538dc8a251bd239291cd (diff) | |
download | libayatana-appindicator-50440e60b3089bde091776f0c2551cc0182ba33c.tar.gz libayatana-appindicator-50440e60b3089bde091776f0c2551cc0182ba33c.tar.bz2 libayatana-appindicator-50440e60b3089bde091776f0c2551cc0182ba33c.zip |
Fixing the Watcher interface
Diffstat (limited to 'src/application-service-watcher.h')
-rw-r--r-- | src/application-service-watcher.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/application-service-watcher.h b/src/application-service-watcher.h index ee6a723..6c430db 100644 --- a/src/application-service-watcher.h +++ b/src/application-service-watcher.h @@ -44,10 +44,9 @@ struct _ApplicationServiceWatcherClass { GObjectClass parent_class; /* Signals */ - void (*service_registered) (ApplicationServiceWatcher * watcher, gchar * object, gpointer data); - void (*service_unregistered) (ApplicationServiceWatcher * watcher, gchar * object, gpointer data); - void (*notification_host_registered) (ApplicationServiceWatcher * watcher, gpointer data); - void (*notification_host_unregistered) (ApplicationServiceWatcher * watcher, gpointer data); + void (*status_notifier_item_registered) (ApplicationServiceWatcher * watcher, gchar * object, gpointer data); + void (*status_notifier_item_unregistered) (ApplicationServiceWatcher * watcher, gchar * object, gpointer data); + void (*status_notifier_host_registered) (ApplicationServiceWatcher * watcher, gpointer data); }; struct _ApplicationServiceWatcher { |