aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-07-22 14:23:35 -0500
committerTed Gould <ted@gould.cx>2011-07-22 14:23:35 -0500
commit6e7a1fea89846e408e643d504af293cc7d582202 (patch)
tree31c86bb720f9366a6b9400c680cee11ce0662ecb
parentb7c636a4390588001b7a2214d2db9cef086f04e8 (diff)
parentf255dfccdfc67242dc15118c1d90b2fbf26aac27 (diff)
downloadayatana-indicator-application-6e7a1fea89846e408e643d504af293cc7d582202.tar.gz
ayatana-indicator-application-6e7a1fea89846e408e643d504af293cc7d582202.tar.bz2
ayatana-indicator-application-6e7a1fea89846e408e643d504af293cc7d582202.zip
Fixing the signal prototype
-rw-r--r--src/application-service-appstore.c4
-rw-r--r--src/indicator-application.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c
index 9cd65b4..9e1dab3 100644
--- a/src/application-service-appstore.c
+++ b/src/application-service-appstore.c
@@ -1276,9 +1276,9 @@ get_applications (ApplicationServiceAppstore * appstore)
out = g_variant_builder_end(&builder);
} else {
GError * error = NULL;
- out = g_variant_parse(g_variant_type_new("a(sisossss)"), "[]", NULL, NULL, &error);
+ out = g_variant_parse(g_variant_type_new("a(sisosssss)"), "[]", NULL, NULL, &error);
if (error != NULL) {
- g_warning("Unable to parse '[]' as a 'a(sisossss)': %s", error->message);
+ g_warning("Unable to parse '[]' as a 'a(sisosssss)': %s", error->message);
out = NULL;
g_error_free(error);
}
diff --git a/src/indicator-application.c b/src/indicator-application.c
index dc810f4..0a0886a 100644
--- a/src/indicator-application.c
+++ b/src/indicator-application.c
@@ -861,7 +861,7 @@ get_applications (GObject * obj, GAsyncResult * res, gpointer user_data)
}
/* Get our new applications that we got in the request */
- g_variant_get(result, "(a(sisossss))", &iter);
+ g_variant_get(result, "(a(sisosssss))", &iter);
while ((child = g_variant_iter_next_value (iter))) {
get_applications_helper(self, child);
g_variant_unref(child);