diff options
author | Ted Gould <ted@gould.cx> | 2010-08-04 12:07:36 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-04 12:07:36 -0500 |
commit | d58186ab8edd420512df29e05005f7722b7bb619 (patch) | |
tree | 8d18c17fc18345b7c62bec7f3366819dfa20d35e /src/application-service-appstore.c | |
parent | 1f1bb2ca74ccdbbbeaf0600b13ab12342d276b77 (diff) | |
download | libayatana-appindicator-d58186ab8edd420512df29e05005f7722b7bb619.tar.gz libayatana-appindicator-d58186ab8edd420512df29e05005f7722b7bb619.tar.bz2 libayatana-appindicator-d58186ab8edd420512df29e05005f7722b7bb619.zip |
Updating signal emition to match new API
Diffstat (limited to 'src/application-service-appstore.c')
-rw-r--r-- | src/application-service-appstore.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index 17bb987..235ed4a 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -125,8 +125,8 @@ application_service_appstore_class_init (ApplicationServiceAppstoreClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (ApplicationServiceAppstoreClass, application_added), NULL, NULL, - _application_service_marshal_VOID__STRING_INT_STRING_STRING_STRING, - G_TYPE_NONE, 5, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_NONE); + _application_service_marshal_VOID__STRING_INT_STRING_STRING_STRING_STRING_STRING, + G_TYPE_NONE, 7, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_NONE); signals[APPLICATION_REMOVED] = g_signal_new ("application-removed", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST, @@ -449,6 +449,8 @@ apply_status (Application * app, AppIndicatorStatus status) app->dbus_name, app->menu, app->icon_path, + "", + "", TRUE); } } else { |