aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-24 23:23:22 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-26 17:55:30 +0800
commitdafe457f2620b7daea7435efa6a9066d53058896 (patch)
tree37494c03592ac75bc5be19db6ac68aba38241271 /src
parent8a962c69bea601023d04ad6e2486115691efee63 (diff)
downloadgsoc2013-empathy-dafe457f2620b7daea7435efa6a9066d53058896.tar
gsoc2013-empathy-dafe457f2620b7daea7435efa6a9066d53058896.tar.gz
gsoc2013-empathy-dafe457f2620b7daea7435efa6a9066d53058896.tar.bz2
gsoc2013-empathy-dafe457f2620b7daea7435efa6a9066d53058896.tar.lz
gsoc2013-empathy-dafe457f2620b7daea7435efa6a9066d53058896.tar.xz
gsoc2013-empathy-dafe457f2620b7daea7435efa6a9066d53058896.tar.zst
gsoc2013-empathy-dafe457f2620b7daea7435efa6a9066d53058896.zip
empathy_dispatcher_chat_with_contact_id(): add optional cb
Diffstat (limited to 'src')
-rw-r--r--src/empathy-chat-manager.c3
-rw-r--r--src/empathy-chat-window.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/empathy-chat-manager.c b/src/empathy-chat-manager.c
index b31684069..219bd87eb 100644
--- a/src/empathy-chat-manager.c
+++ b/src/empathy-chat-manager.c
@@ -399,7 +399,8 @@ empathy_chat_manager_undo_closed_chat (EmpathyChatManager *self)
TP_USER_ACTION_TIME_NOT_USER_ACTION);
else
empathy_dispatcher_chat_with_contact_id (data->account, data->id,
- TP_USER_ACTION_TIME_NOT_USER_ACTION);
+ TP_USER_ACTION_TIME_NOT_USER_ACTION,
+ NULL, NULL);
g_signal_emit (self, signals[CHATS_CHANGED], 0,
g_queue_get_length (priv->queue));
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 7669c6e7f..bb23e016a 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1828,7 +1828,9 @@ chat_window_drag_data_received (GtkWidget *widget,
if (!chat) {
empathy_dispatcher_chat_with_contact_id (
- account, contact_id, gtk_get_current_event_time ());
+ account, contact_id,
+ gtk_get_current_event_time (),
+ NULL, NULL);
g_strfreev (strv);
return;