diff options
author | Ted Gould <ted@canonical.com> | 2009-11-06 21:40:28 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-06 21:40:28 -0600 |
commit | bca77a7a1e38c1d97211394799cf103bc02b0547 (patch) | |
tree | 57f127a0edca77c5e9d4d748f0d2717adfa5c85a /src/custom-service-appstore.c | |
parent | 78a6d0dc74a7ea166e207f8036cc4930bcdcbbbd (diff) | |
download | libayatana-appindicator-bca77a7a1e38c1d97211394799cf103bc02b0547.tar.gz libayatana-appindicator-bca77a7a1e38c1d97211394799cf103bc02b0547.tar.bz2 libayatana-appindicator-bca77a7a1e38c1d97211394799cf103bc02b0547.zip |
Getting the registration signal, and passing it up the stack.
Diffstat (limited to 'src/custom-service-appstore.c')
-rw-r--r-- | src/custom-service-appstore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/custom-service-appstore.c b/src/custom-service-appstore.c index ceb2c17..b25ffa7 100644 --- a/src/custom-service-appstore.c +++ b/src/custom-service-appstore.c @@ -106,7 +106,7 @@ custom_service_appstore_finalize (GObject *object) } void -custom_service_appstore_application_add (CustomServiceAppstore * appstore, gchar * dbus_name, gchar * dbus_object) +custom_service_appstore_application_add (CustomServiceAppstore * appstore, const gchar * dbus_name, const gchar * dbus_object) { g_return_if_fail(IS_CUSTOM_SERVICE_APPSTORE(appstore)); g_return_if_fail(dbus_name != NULL && dbus_name[0] != '\0'); @@ -117,7 +117,7 @@ custom_service_appstore_application_add (CustomServiceAppstore * appstore, gchar } void -custom_service_appstore_application_remove (CustomServiceAppstore * appstore, gchar * dbus_name, gchar * dbus_object) +custom_service_appstore_application_remove (CustomServiceAppstore * appstore, const gchar * dbus_name, const gchar * dbus_object) { g_return_if_fail(IS_CUSTOM_SERVICE_APPSTORE(appstore)); g_return_if_fail(dbus_name != NULL && dbus_name[0] != '\0'); |