diff options
author | Ted Gould <ted@gould.cx> | 2010-07-07 14:17:31 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-07-07 14:17:31 -0500 |
commit | eed6cf0ccf7089cf529c8e3e6c9c305773d55a94 (patch) | |
tree | bf11fd664e9eca25396eeb33d22debccfad2178b /src/app-indicator.c | |
parent | 20f0c1d8e534fc1b1d0824baa2aa5464d2b0f998 (diff) | |
parent | 95c79072099f677f140c8d4b6525c9c9e858b972 (diff) | |
download | ayatana-indicator-application-eed6cf0ccf7089cf529c8e3e6c9c305773d55a94.tar.gz ayatana-indicator-application-eed6cf0ccf7089cf529c8e3e6c9c305773d55a94.tar.bz2 ayatana-indicator-application-eed6cf0ccf7089cf529c8e3e6c9c305773d55a94.zip |
Working with the better container signals
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); } |