diff options
author | Ted Gould <ted@gould.cx> | 2011-03-15 20:59:56 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-03-15 20:59:56 -0500 |
commit | a76d0eb2f0bd071ce73b538f44d2ed1bc488bacf (patch) | |
tree | 3570c9006273a1650031327cba87b8cd37c25703 /src | |
parent | 7b316782e0acd1ef0e91f41feca4ddb9c4ac5c4f (diff) | |
parent | 1aeeeb0355a59efe470e798806f6814ae19f0c9a (diff) | |
download | ayatana-indicator-application-a76d0eb2f0bd071ce73b538f44d2ed1bc488bacf.tar.gz ayatana-indicator-application-a76d0eb2f0bd071ce73b538f44d2ed1bc488bacf.tar.bz2 ayatana-indicator-application-a76d0eb2f0bd071ce73b538f44d2ed1bc488bacf.zip |
Using the proper object to finish the call
Diffstat (limited to 'src')
-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 5f343e5..77f0634 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -438,7 +438,7 @@ got_all_properties (GObject * source_object, GAsyncResult * res, * icon_theme_path = NULL, * index = NULL, * label = NULL, * guide = NULL; - GVariant * properties = g_dbus_proxy_call_finish(app->props, res, &error); + GVariant * properties = g_dbus_proxy_call_finish(G_DBUS_PROXY(source_object), res, &error); if (app->props_cancel != NULL) { g_object_unref(app->props_cancel); |