diff options
author | Ted Gould <ted@gould.cx> | 2012-03-02 09:52:20 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-03-02 09:52:20 -0600 |
commit | e2bbff710dd9d9ea79908b49ed02438d11ef1010 (patch) | |
tree | 4010dd47c361e8ed29c54d2e40988d5a9d75a275 | |
parent | 9ea46ae5092ea8ced1538929e751fd30bda164cf (diff) | |
parent | a140461aa560bb000853903787d7e4643858767e (diff) | |
download | ayatana-indicator-application-e2bbff710dd9d9ea79908b49ed02438d11ef1010.tar.gz ayatana-indicator-application-e2bbff710dd9d9ea79908b49ed02438d11ef1010.tar.bz2 ayatana-indicator-application-e2bbff710dd9d9ea79908b49ed02438d11ef1010.zip |
Add full type to GVariantBuilder
-rw-r--r-- | src/application-service-appstore.c | 2 |
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; |