diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-01-10 00:12:11 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-10 00:12:11 +0800 |
commit | de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b (patch) | |
tree | 6d34ad438557cd82b7fc83c327265f7fd9c5c45c /src | |
parent | 9940bfed4c589710add05be776b7b1817bf9d48d (diff) | |
download | gsoc2013-empathy-de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b.tar gsoc2013-empathy-de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b.tar.gz gsoc2013-empathy-de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b.tar.bz2 gsoc2013-empathy-de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b.tar.lz gsoc2013-empathy-de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b.tar.xz gsoc2013-empathy-de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b.tar.zst gsoc2013-empathy-de7f1fe51aed7cb5b81d85d6bbb73d50b4f7de0b.zip |
Use the new dispatcher api to request text channels
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2131
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-chat-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 6bce53b9c..c9e67d3c5 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -1081,7 +1081,7 @@ chat_window_drag_data_received (GtkWidget *widget, chat = empathy_chat_window_find_chat (account, strv[1]); if (!chat) { - empathy_dispatcher_chat_with_contact_id (account, strv[2]); + empathy_dispatcher_chat_with_contact_id (account, strv[2], NULL, NULL); g_object_unref (account); g_strfreev (strv); return; |