aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-07-07 14:17:31 -0500
committerTed Gould <ted@gould.cx>2010-07-07 14:17:31 -0500
commiteed6cf0ccf7089cf529c8e3e6c9c305773d55a94 (patch)
treebf11fd664e9eca25396eeb33d22debccfad2178b
parent20f0c1d8e534fc1b1d0824baa2aa5464d2b0f998 (diff)
parent95c79072099f677f140c8d4b6525c9c9e858b972 (diff)
downloadayatana-indicator-application-eed6cf0ccf7089cf529c8e3e6c9c305773d55a94.tar.gz
ayatana-indicator-application-eed6cf0ccf7089cf529c8e3e6c9c305773d55a94.tar.bz2
ayatana-indicator-application-eed6cf0ccf7089cf529c8e3e6c9c305773d55a94.zip
Working with the better container signals
-rw-r--r--src/app-indicator.c8
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);
}