diff options
author | Ted Gould <ted@gould.cx> | 2012-01-28 21:36:19 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-01-28 21:36:19 -0600 |
commit | f12cf320a0d665e2c304b4415aac3cedfaf559a1 (patch) | |
tree | b1af50ee7189e1884008cd5e099ca8ec2f35c2e4 | |
parent | 3aa66a7c29f62a0d862ad04f9d61d61bee9a23ef (diff) | |
download | libayatana-appindicator-f12cf320a0d665e2c304b4415aac3cedfaf559a1.tar.gz libayatana-appindicator-f12cf320a0d665e2c304b4415aac3cedfaf559a1.tar.bz2 libayatana-appindicator-f12cf320a0d665e2c304b4415aac3cedfaf559a1.zip |
Make the set function call the property set function
-rw-r--r-- | src/app-indicator.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index bb44e50..0d27cb2 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -2203,6 +2203,9 @@ app_indicator_set_title (AppIndicator *self, const gchar * title) { g_return_if_fail (IS_APP_INDICATOR (self)); + g_object_set(G_OBJECT(self), + PROP_TITLE_S, title == NULL ? "": title, + NULL); return; } |