From: Sjoerd Simons Date: Wed, 11 Feb 2009 19:43:35 +0000 (+0000) Subject: Hookup the contact menu item cb correctly X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=0d130027f6499eabd22dc227ff9ccfe70b8e2c5b Hookup the contact menu item cb correctly Signed-off-by: Sjoerd Simons svn path=/trunk/; revision=2436 --- diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c index ca820837..f311b129 100644 --- a/libempathy-gtk/empathy-contact-menu.c +++ b/libempathy-gtk/empathy-contact-menu.c @@ -111,6 +111,14 @@ empathy_contact_menu_new (EmpathyContact *contact, return menu; } +static void +empathy_contact_chat_menu_item_activated (GtkMenuItem *item, + EmpathyContact *contact) +{ + empathy_dispatcher_chat_with_contact (contact, NULL, NULL); +} + + GtkWidget * empathy_contact_chat_menu_item_new (EmpathyContact *contact) { @@ -125,8 +133,8 @@ empathy_contact_chat_menu_item_new (EmpathyContact *contact) gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image); gtk_widget_show (image); - g_signal_connect_swapped (item, "activate", - G_CALLBACK (empathy_dispatcher_chat_with_contact), + g_signal_connect (item, "activate", + G_CALLBACK (empathy_contact_chat_menu_item_activated), contact); return item;