From 2e57848f1439e8aadbc44654dd53348894c02afb Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 17 Jan 2011 13:23:33 -0600 Subject: Changing the name of the approver interface --- src/dbus-shared.h | 2 +- src/notification-approver.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/dbus-shared.h b/src/dbus-shared.h index 71c063e..6144b9b 100644 --- a/src/dbus-shared.h +++ b/src/dbus-shared.h @@ -31,5 +31,5 @@ with this program. If not, see . #define NOTIFICATION_ITEM_DBUS_IFACE "org.kde.StatusNotifierItem" #define NOTIFICATION_ITEM_DEFAULT_OBJ "/StatusNotifierItem" -#define NOTIFICATION_APPROVER_DBUS_IFACE "org.ayatana.StatusNotifierApprover" +#define NOTIFICATION_APPROVER_DBUS_IFACE "com.canonical.StatusNotifierApprover" diff --git a/src/notification-approver.xml b/src/notification-approver.xml index 4a8e39b..a72ca92 100644 --- a/src/notification-approver.xml +++ b/src/notification-approver.xml @@ -1,6 +1,6 @@ - + -- cgit v1.2.3 From 0bd9ddc0eee8e317f368fcb996e2931f42ed8f0b Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 26 Jan 2011 12:56:32 -0600 Subject: Protecting against empty application lists, fixing the builder to be on the stack and using it correctly. --- src/application-service-appstore.c | 43 +++++++++++++++++++++++++++----------- 1 file changed, 31 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index 481d886..dd94561 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -1156,24 +1156,43 @@ static GVariant * get_applications (ApplicationServiceAppstore * appstore) { ApplicationServiceAppstorePrivate * priv = appstore->priv; + GVariant * out = NULL; - GVariantBuilder * builder = g_variant_builder_new (G_VARIANT_TYPE_ARRAY); - GList * listpntr; - gint position = 0; + if (g_list_length(priv->applications) > 0) { + GVariantBuilder builder; + GList * listpntr; + gint position = 0; - for (listpntr = priv->applications; listpntr != NULL; listpntr = g_list_next(listpntr)) { - Application * app = (Application *)listpntr->data; - if (app->visible_state == VISIBLE_STATE_HIDDEN) { - continue; + g_variant_builder_init(&builder, G_VARIANT_TYPE_ARRAY); + + for (listpntr = priv->applications; listpntr != NULL; listpntr = g_list_next(listpntr)) { + Application * app = (Application *)listpntr->data; + if (app->visible_state == VISIBLE_STATE_HIDDEN) { + continue; + } + + g_variant_builder_add (&builder, "(sisosss)", app->icon, + position++, app->dbus_name, app->menu, + app->icon_theme_path, app->label, + app->guide); } - g_variant_builder_add (builder, "(sisosss)", app->icon, - position++, app->dbus_name, app->menu, - app->icon_theme_path, app->label, - app->guide); + out = g_variant_builder_end(&builder); + } else { + GError * error = NULL; + out = g_variant_parse(g_variant_type_new("a(sisosss)"), "[]", NULL, NULL, &error); + if (error != NULL) { + g_warning("Unable to parse '[]' as a 'a(sisosss)': %s", error->message); + out = NULL; + g_error_free(error); + } } - return g_variant_new("(a(sisosss))", builder); + if (out != NULL) { + return g_variant_new_tuple(&out, 1); + } else { + return NULL; + } } /* Removes and approver from our list of approvers and -- cgit v1.2.3