diff options
author | Ted Gould <ted@gould.cx> | 2010-01-15 10:05:21 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-15 10:05:21 -0600 |
commit | 93f32fd90d78997bf9661ddeaa8bfbb2f3020ced (patch) | |
tree | 0adad1d7693130c96b7b267907d8966137579172 /src | |
parent | 2579e9f10454dc36c6b793fd064936737052d577 (diff) | |
download | libayatana-appindicator-93f32fd90d78997bf9661ddeaa8bfbb2f3020ced.tar.gz libayatana-appindicator-93f32fd90d78997bf9661ddeaa8bfbb2f3020ced.tar.bz2 libayatana-appindicator-93f32fd90d78997bf9661ddeaa8bfbb2f3020ced.zip |
Using the menu path instead of the item path.
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 df4213a..bc99855 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -657,7 +657,7 @@ _application_service_server_get_applications (ApplicationServiceAppstore * appst /* DBus Object */ g_value_init(&value, DBUS_TYPE_G_OBJECT_PATH); - g_value_set_static_boxed(&value, ((Application *)listpntr->data)->dbus_object); + g_value_set_static_boxed(&value, ((Application *)listpntr->data)->menu); g_value_array_append(values, &value); g_value_unset(&value); |