diff options
author | Ted Gould <ted@gould.cx> | 2010-08-04 13:58:23 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-04 13:58:23 -0500 |
commit | 788b0dbc0a2f61eb427796c7f0588490de071a4f (patch) | |
tree | adb783e0893ba14116ffc106ed5eda1754c7eb61 /src | |
parent | 0d11bf650fcaa20dfbc5d53ea1c08334b2bf63a0 (diff) | |
download | libayatana-appindicator-788b0dbc0a2f61eb427796c7f0588490de071a4f.tar.gz libayatana-appindicator-788b0dbc0a2f61eb427796c7f0588490de071a4f.tar.bz2 libayatana-appindicator-788b0dbc0a2f61eb427796c7f0588490de071a4f.zip |
Sending the label and the guide over dbus if we have them.
Diffstat (limited to 'src')
-rw-r--r-- | src/application-service-appstore.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index a05c725..453c25c 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -479,8 +479,8 @@ apply_status (Application * app, AppIndicatorStatus status) app->dbus_name, app->menu, app->icon_path, - "", - "", + app->label, + app->guide, TRUE); } } else { @@ -807,13 +807,13 @@ _application_service_server_get_applications (ApplicationServiceAppstore * appst /* Label */ g_value_init(&value, G_TYPE_STRING); - g_value_set_string(&value, ""); + g_value_set_string(&value, ((Application *)listpntr->data)->label); g_value_array_append(values, &value); g_value_unset(&value); /* Guide */ g_value_init(&value, G_TYPE_STRING); - g_value_set_string(&value, ""); + g_value_set_string(&value, ((Application *)listpntr->data)->guide); g_value_array_append(values, &value); g_value_unset(&value); |