diff options
author | Ted Gould <ted@gould.cx> | 2010-01-08 15:37:45 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-08 15:37:45 -0600 |
commit | 7a78594a6017f4c7aab921a778bb186759b5cded (patch) | |
tree | 71d883c4ac28e60235cb870f3961a6fcd28bed3d /src/application-service-appstore.h | |
parent | aaa7438bff492c735bffa378ef5d38d3452b4e6f (diff) | |
parent | c4b431a4070d84c12b56ba3007356d38006d89ec (diff) | |
download | ayatana-indicator-application-7a78594a6017f4c7aab921a778bb186759b5cded.tar.gz ayatana-indicator-application-7a78594a6017f4c7aab921a778bb186759b5cded.tar.bz2 ayatana-indicator-application-7a78594a6017f4c7aab921a778bb186759b5cded.zip |
* Upstream merge:
* Adding support for icons changing through the service and
in the indicator.
* Fixing the generated headers for DBus Properties calls
* Fixing libappindicator set_icon to set the right icon.
Diffstat (limited to 'src/application-service-appstore.h')
-rw-r--r-- | src/application-service-appstore.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/application-service-appstore.h b/src/application-service-appstore.h index edf1a37..6bd7a01 100644 --- a/src/application-service-appstore.h +++ b/src/application-service-appstore.h @@ -40,13 +40,14 @@ typedef struct _ApplicationServiceAppstoreClass ApplicationServiceAppstoreClass; struct _ApplicationServiceAppstoreClass { GObjectClass parent_class; + + void (*application_added) (ApplicationServiceAppstore * appstore, gchar *, gint, gchar *, gchar *, gpointer); + void (*application_removed) (ApplicationServiceAppstore * appstore, gint, gpointer); + void (*application_icon_changed)(ApplicationServiceAppstore * appstore, gint, const gchar *, gpointer); }; struct _ApplicationServiceAppstore { GObject parent; - - void (*application_added) (ApplicationServiceAppstore * appstore, gchar *, gint, gchar *, gchar *, gpointer); - void (*application_removed) (ApplicationServiceAppstore * appstore, gint, gpointer); }; GType application_service_appstore_get_type (void); |