diff options
author | Ted Gould <ted@gould.cx> | 2010-08-11 14:11:18 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-11 14:11:18 -0500 |
commit | 7330f014db03391d1859f74b4bcbef13e587aa52 (patch) | |
tree | 88ce502b5507872165c0bff6a9388db3b8c2ce08 | |
parent | 1fbc480b06ae2596b2644134d3c906ef3ba15f8e (diff) | |
download | ayatana-indicator-application-7330f014db03391d1859f74b4bcbef13e587aa52.tar.gz ayatana-indicator-application-7330f014db03391d1859f74b4bcbef13e587aa52.tar.bz2 ayatana-indicator-application-7330f014db03391d1859f74b4bcbef13e587aa52.zip |
Adding the wrapper properties to the get.
-rw-r--r-- | src/app-indicator.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index e174e57..cd8dcc9 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -805,10 +805,12 @@ app_indicator_get_property (GObject * object, guint prop_id, GValue * value, GPa g_value_set_boolean (value, priv->watcher_proxy != NULL ? TRUE : FALSE); break; + case PROP_X_LABEL: case PROP_LABEL: g_value_set_string (value, priv->label); break; + case PROP_X_LABEL_GUIDE: case PROP_LABEL_GUIDE: g_value_set_string (value, priv->label_guide); break; |