diff options
author | Ted Gould <ted@gould.cx> | 2012-01-28 21:46:45 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-01-28 21:46:45 -0600 |
commit | 982de618938bc5f9bc1224492970ccb06bc3a00a (patch) | |
tree | 17b96a21d36470a5beb4f7e2583dd527a4d4c2c1 | |
parent | 97d2b40745a0049fcf0be430ab9715c9e050bc3b (diff) | |
download | libayatana-appindicator-982de618938bc5f9bc1224492970ccb06bc3a00a.tar.gz libayatana-appindicator-982de618938bc5f9bc1224492970ccb06bc3a00a.tar.bz2 libayatana-appindicator-982de618938bc5f9bc1224492970ccb06bc3a00a.zip |
Handling getting the title property
-rw-r--r-- | src/app-indicator.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index f3f8b9d..6b4110c 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -1011,6 +1011,10 @@ app_indicator_get_property (GObject * object, guint prop_id, GValue * value, GPa g_value_set_object(value, priv->menuservice); break; + case PROP_TITLE: + g_value_set_string(value, priv->title); + break; + default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; |