diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2012-03-05 10:39:12 +0100 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2012-03-05 10:39:12 +0100 |
commit | e3d1d6d1e4914b86e24a69be63cce69e0bc2e2cd (patch) | |
tree | 5f0458c592744c980fb4e0b478bdce1904b5e26d | |
parent | 68e3c2d8d183d04b3e458213aba06fa9a483ee84 (diff) | |
parent | e2bbff710dd9d9ea79908b49ed02438d11ef1010 (diff) | |
download | ayatana-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!
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/application-service-appstore.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index a1ab760..5d57d3c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-application (0.4.91-0ubuntu2) UNRELEASED; urgency=low + + * Backport an upstream fix for a gvariant misuse, thanks desrt for it! + + -- Sebastien Bacher <seb128@ubuntu.com> Mon, 05 Mar 2012 10:38:46 +0100 + indicator-application (0.4.91-0ubuntu1) precise; urgency=low * New upstream release. 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; |