diff options
author | Ted Gould <ted@gould.cx> | 2011-07-06 15:34:19 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-07-06 15:34:19 -0500 |
commit | e2a324a782605be698e96488f86a3e803a74dd8d (patch) | |
tree | b864c80b9e8a79001ada375293f7b177e5490681 /libindicator/indicator-object.c | |
parent | 5a535d109e640256aa86ce7bb16d458ef1f60890 (diff) | |
parent | f837b4b6102108a10bc897bdc1484882b5747316 (diff) | |
download | libayatana-indicator-e2a324a782605be698e96488f86a3e803a74dd8d.tar.gz libayatana-indicator-e2a324a782605be698e96488f86a3e803a74dd8d.tar.bz2 libayatana-indicator-e2a324a782605be698e96488f86a3e803a74dd8d.zip |
Adding in the name hint for the indicators
Diffstat (limited to 'libindicator/indicator-object.c')
-rw-r--r-- | libindicator/indicator-object.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index a91251c..2fe8dd1 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -240,6 +240,7 @@ indicator_object_init (IndicatorObject *self) self->priv->entry.label = NULL; self->priv->entry.image = NULL; self->priv->entry.accessible_desc = NULL; + self->priv->entry.name_hint = NULL; self->priv->gotten_entries = FALSE; @@ -435,6 +436,10 @@ get_entries_default (IndicatorObject * io) g_warning("IndicatorObject class does not have an accessible description."); } + if (class->get_name_hint) { + priv->entry.name_hint = class->get_name_hint(io); + } + priv->gotten_entries = TRUE; } |