aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy-gtk/empathy-contact-menu.c')
-rw-r--r--libempathy-gtk/empathy-contact-menu.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c
index ca8208374..f311b1290 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;