aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2012-03-05 10:39:12 +0100
committerSebastien Bacher <seb128@ubuntu.com>2012-03-05 10:39:12 +0100
commite3d1d6d1e4914b86e24a69be63cce69e0bc2e2cd (patch)
tree5f0458c592744c980fb4e0b478bdce1904b5e26d /src
parent68e3c2d8d183d04b3e458213aba06fa9a483ee84 (diff)
parente2bbff710dd9d9ea79908b49ed02438d11ef1010 (diff)
downloadayatana-indicator-application-e3d1d6d1e4914b86e24a69be63cce69e0bc2e2cd.tar.gz
ayatana-indicator-application-e3d1d6d1e4914b86e24a69be63cce69e0bc2e2cd.tar.bz2
ayatana-indicator-application-e3d1d6d1e4914b86e24a69be63cce69e0bc2e2cd.zip
Backport an upstream fix for a gvariant misuse, thanks desrt for it!
Diffstat (limited to 'src')
-rw-r--r--src/application-service-appstore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c
index 2f456f4..5d4296d 100644
--- a/src/application-service-appstore.c
+++ b/src/application-service-appstore.c
@@ -1348,7 +1348,7 @@ get_applications (ApplicationServiceAppstore * appstore)
GList * listpntr;
gint position = 0;
- g_variant_builder_init(&builder, G_VARIANT_TYPE_ARRAY);
+ g_variant_builder_init(&builder, G_VARIANT_TYPE ("a(sisossssss)"));
for (listpntr = priv->applications; listpntr != NULL; listpntr = g_list_next(listpntr)) {
Application * app = (Application *)listpntr->data;