diff options
author | Ted Gould <ted@gould.cx> | 2010-08-04 12:08:42 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-04 12:08:42 -0500 |
commit | e33d50bdee8e3e04277f4c3c3f45ff60d3bbbb45 (patch) | |
tree | d02e86c9a76439a00a2bdea7cf8d297028174bd9 /src | |
parent | d58186ab8edd420512df29e05005f7722b7bb619 (diff) | |
download | libayatana-appindicator-e33d50bdee8e3e04277f4c3c3f45ff60d3bbbb45.tar.gz libayatana-appindicator-e33d50bdee8e3e04277f4c3c3f45ff60d3bbbb45.tar.bz2 libayatana-appindicator-e33d50bdee8e3e04277f4c3c3f45ff60d3bbbb45.zip |
Adding the new entries to the list of the get_apps function.
Diffstat (limited to 'src')
-rw-r--r-- | src/application-service-appstore.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index 235ed4a..2f53ecf 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -773,6 +773,18 @@ _application_service_server_get_applications (ApplicationServiceAppstore * appst g_value_array_append(values, &value); g_value_unset(&value); + /* Label */ + g_value_init(&value, G_TYPE_STRING); + g_value_set_string(&value, ""); + 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_array_append(values, &value); + g_value_unset(&value); + g_ptr_array_add(*apps, values); } |