diff options
author | Ted Gould <ted@gould.cx> | 2010-01-08 14:11:55 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-08 14:11:55 -0600 |
commit | 6c2b2fd483e74576aa53a496dee76cdf16fe07d4 (patch) | |
tree | 5aa25a86ff344e8527ace4369bf796f638012cdc /src/application-service-appstore.h | |
parent | ae5ff4b699c260dd30ecd59e6c6d58fc5252794d (diff) | |
parent | 5f797d71ef38ddb421e9b26757df8d3e87b84bce (diff) | |
download | libayatana-appindicator-6c2b2fd483e74576aa53a496dee76cdf16fe07d4.tar.gz libayatana-appindicator-6c2b2fd483e74576aa53a496dee76cdf16fe07d4.tar.bz2 libayatana-appindicator-6c2b2fd483e74576aa53a496dee76cdf16fe07d4.zip |
Fixing everything by putting the slots on correctly.
Diffstat (limited to 'src/application-service-appstore.h')
-rw-r--r-- | src/application-service-appstore.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/application-service-appstore.h b/src/application-service-appstore.h index 7ab20c5..6bd7a01 100644 --- a/src/application-service-appstore.h +++ b/src/application-service-appstore.h @@ -40,16 +40,16 @@ typedef struct _ApplicationServiceAppstoreClass ApplicationServiceAppstoreClass; struct _ApplicationServiceAppstoreClass { GObjectClass parent_class; -}; - -struct _ApplicationServiceAppstore { - GObject parent; 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; +}; + GType application_service_appstore_get_type (void); void application_service_appstore_application_add (ApplicationServiceAppstore * appstore, const gchar * dbus_name, |