diff options
author | Ted Gould <ted@gould.cx> | 2010-07-09 15:04:30 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-07-09 15:04:30 -0500 |
commit | fb4da4abb85c6c9ada6c47766bb46445617db440 (patch) | |
tree | 74325ee2c28c3b1389265a41ff72ad69e2ee2c5e /src/app-indicator.c | |
parent | a8aac3aa0fd375c258579df7bc9db031900966dd (diff) | |
parent | 1ddd622e7f2ab0142c826459e1a38fec926c4dc6 (diff) | |
download | ayatana-indicator-application-fb4da4abb85c6c9ada6c47766bb46445617db440.tar.gz ayatana-indicator-application-fb4da4abb85c6c9ada6c47766bb46445617db440.tar.bz2 ayatana-indicator-application-fb4da4abb85c6c9ada6c47766bb46445617db440.zip |
Sync to trunk
Diffstat (limited to 'src/app-indicator.c')
-rw-r--r-- | src/app-indicator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index bc43e58..32f512f 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -1408,12 +1408,12 @@ container_iterate (GtkWidget *widget, container_iterate, child); g_signal_connect_object (submenu, - "add", + "child-added", G_CALLBACK (submenu_changed), child, 0); g_signal_connect_object (submenu, - "remove", + "child-removed", G_CALLBACK (submenu_changed), child, 0); @@ -1552,11 +1552,11 @@ app_indicator_set_menu (AppIndicator *self, GtkMenu *menu) check_connect (self); g_signal_connect (menu, - "add", + "child-added", G_CALLBACK (client_menu_changed), self); g_signal_connect (menu, - "remove", + "child-removed", G_CALLBACK (client_menu_changed), self); } |