diff options
author | Ted Gould <ted@gould.cx> | 2012-01-28 21:45:34 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-01-28 21:45:34 -0600 |
commit | 97d2b40745a0049fcf0be430ab9715c9e050bc3b (patch) | |
tree | 8aae7391a1012306a1873d1c24b8b3a5b2ed025f | |
parent | dcbd590c7c1a61560c9dfa2636a467e7e2332c6d (diff) | |
download | libayatana-appindicator-97d2b40745a0049fcf0be430ab9715c9e050bc3b.tar.gz libayatana-appindicator-97d2b40745a0049fcf0be430ab9715c9e050bc3b.tar.bz2 libayatana-appindicator-97d2b40745a0049fcf0be430ab9715c9e050bc3b.zip |
Making get_title work
-rw-r--r-- | src/app-indicator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index 54a2b6a..f3f8b9d 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -2352,7 +2352,7 @@ app_indicator_get_title (AppIndicator *self) { g_return_val_if_fail (IS_APP_INDICATOR (self), NULL); - return NULL; + return self->priv->title; } |