aboutsummaryrefslogtreecommitdiff
path: root/src/app-indicator.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-07-08 10:23:57 -0500
committerTed Gould <ted@gould.cx>2010-07-08 10:23:57 -0500
commit2a931ef0209ce7c58753fbd369e0194bf73add10 (patch)
treeb637066a6d03c3427da6484bb5d6b0011c2305f4 /src/app-indicator.c
parent033b032b31f89aca79607bc3ab6f7f719028865a (diff)
parent44880df7222487d65b68c7c53a9d28de9cc2f32c (diff)
downloadlibayatana-appindicator-2a931ef0209ce7c58753fbd369e0194bf73add10.tar.gz
libayatana-appindicator-2a931ef0209ce7c58753fbd369e0194bf73add10.tar.bz2
libayatana-appindicator-2a931ef0209ce7c58753fbd369e0194bf73add10.zip
New upstream release.
∘ Work with updated container signal names
Diffstat (limited to 'src/app-indicator.c')
-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);
}