aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-07-08 10:22:02 -0500
committerTed Gould <ted@gould.cx>2010-07-08 10:22:02 -0500
commit44880df7222487d65b68c7c53a9d28de9cc2f32c (patch)
treeb755cfe5bf56369a65b5bb0b3d10e4f6bbea7fc6 /src
parent3439224475debe3d7e8977a0a15a4a9c728fc8b7 (diff)
parenta627c0751602989e29743391546ae63808bf3389 (diff)
downloadayatana-indicator-application-44880df7222487d65b68c7c53a9d28de9cc2f32c.tar.gz
ayatana-indicator-application-44880df7222487d65b68c7c53a9d28de9cc2f32c.tar.bz2
ayatana-indicator-application-44880df7222487d65b68c7c53a9d28de9cc2f32c.zip
Import upstream version 0.2.2
Diffstat (limited to 'src')
-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);
}