diff options
author | Ted Gould <ted@canonical.com> | 2009-02-13 16:04:35 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-02-13 16:04:35 -0600 |
commit | df2dfb8762356add2ac100cd23988811c273c92e (patch) | |
tree | 89940fb4b5308d6c7a5f7f5308b8a164f0af6ffb /src/app-menu-item.c | |
parent | f8caa222e17d21500ef36cb57510308f5e2ce852 (diff) | |
download | ayatana-indicator-messages-df2dfb8762356add2ac100cd23988811c273c92e.tar.gz ayatana-indicator-messages-df2dfb8762356add2ac100cd23988811c273c92e.tar.bz2 ayatana-indicator-messages-df2dfb8762356add2ac100cd23988811c273c92e.zip |
Add a callback to display the app
Diffstat (limited to 'src/app-menu-item.c')
-rw-r--r-- | src/app-menu-item.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app-menu-item.c b/src/app-menu-item.c index bf6fe8a..2622010 100644 --- a/src/app-menu-item.c +++ b/src/app-menu-item.c @@ -156,6 +156,9 @@ desktop_cb (IndicateListener * listener, IndicateListenerServer * server, gchar static void activate_cb (AppMenuItem * self, gpointer data) { - //AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(self); + AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(self); + + indicate_listener_display(priv->listener, priv->server, NULL); + return; } |