aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-01-07 00:56:18 -0600
committerTed Gould <ted@gould.cx>2010-01-07 00:56:18 -0600
commit11984c8ac43cdf661ea8de0ae2bee380a04a00a3 (patch)
tree376f15b8269b5e7e90049f987da211cba9481c43 /src
parent06b735fd5bd4212ec126831ca041615e9d433418 (diff)
parente16d383c5a0fb85742dde81f1f7191fceefa8667 (diff)
downloadayatana-indicator-application-11984c8ac43cdf661ea8de0ae2bee380a04a00a3.tar.gz
ayatana-indicator-application-11984c8ac43cdf661ea8de0ae2bee380a04a00a3.tar.bz2
ayatana-indicator-application-11984c8ac43cdf661ea8de0ae2bee380a04a00a3.zip
Fixing the signals.
Diffstat (limited to 'src')
-rw-r--r--src/application-service-appstore.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c
index 92e5668..1ac309a 100644
--- a/src/application-service-appstore.c
+++ b/src/application-service-appstore.c
@@ -95,7 +95,7 @@ application_service_appstore_class_init (ApplicationServiceAppstoreClass *klass)
G_STRUCT_OFFSET (ApplicationServiceAppstore, application_added),
NULL, NULL,
_application_service_marshal_VOID__STRING_INT_STRING_STRING_STRING,
- G_TYPE_NONE, 4, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_NONE);
+ G_TYPE_NONE, 5, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_NONE);
signals[APPLICATION_REMOVED] = g_signal_new ("application-removed",
G_TYPE_FROM_CLASS(klass),
G_SIGNAL_RUN_LAST,
@@ -180,13 +180,21 @@ get_all_properties_cb (DBusGProxy * proxy, GHashTable * properties, GError * err
would involve looking at the name and category and sorting
it with the other entries. */
+ const gchar * icon_path = NULL;
+ gpointer icon_path_data = g_hash_table_lookup(properties, NOTIFICATION_ITEM_PROP_ICON_PATH);
+ if (icon_path_data != NULL) {
+ icon_path = g_value_get_string((GValue *)icon_path_data);
+ } else {
+ icon_path = "";
+ }
+
g_signal_emit(G_OBJECT(app->appstore),
signals[APPLICATION_ADDED], 0,
g_value_get_string(g_hash_table_lookup(properties, NOTIFICATION_ITEM_PROP_ICON_NAME)),
0, /* Position */
app->dbus_name,
g_value_get_string(g_hash_table_lookup(properties, NOTIFICATION_ITEM_PROP_MENU)),
- g_value_get_string(g_hash_table_lookup(properties, NOTIFICATION_ITEM_PROP_ICON_PATH)),
+ icon_path,
TRUE);
return;