aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-11 20:32:02 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-11 20:32:02 +0800
commit8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd (patch)
treecac564a1043274b2f3d53e814839f086666c583b /libempathy-gtk
parentd82293953e49e54dbdaba7f0fe71ef6387099e2f (diff)
downloadgsoc2013-empathy-8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd.tar
gsoc2013-empathy-8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd.tar.gz
gsoc2013-empathy-8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd.tar.bz2
gsoc2013-empathy-8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd.tar.lz
gsoc2013-empathy-8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd.tar.xz
gsoc2013-empathy-8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd.tar.zst
gsoc2013-empathy-8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd.zip
empathy_dispatcher_chat_with_contact_id: remove callback argument
It's unused anyway.
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-chat.c3
-rw-r--r--libempathy-gtk/empathy-new-message-dialog.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c
index dd140587c..399f0cc9b 100644
--- a/libempathy-gtk/empathy-chat.c
+++ b/libempathy-gtk/empathy-chat.c
@@ -248,8 +248,7 @@ reconnected_connection_ready_cb (TpConnection *connection,
switch (priv->handle_type) {
case TP_HANDLE_TYPE_CONTACT:
empathy_dispatcher_chat_with_contact_id (
- connection, priv->id, EMPATHY_DISPATCHER_NON_USER_ACTION,
- NULL, NULL);
+ connection, priv->id, EMPATHY_DISPATCHER_NON_USER_ACTION);
break;
case TP_HANDLE_TYPE_ROOM:
empathy_dispatcher_join_muc (connection,
diff --git a/libempathy-gtk/empathy-new-message-dialog.c b/libempathy-gtk/empathy-new-message-dialog.c
index 21480a787..6cdab4654 100644
--- a/libempathy-gtk/empathy-new-message-dialog.c
+++ b/libempathy-gtk/empathy-new-message-dialog.c
@@ -71,7 +71,7 @@ empathy_new_message_dialog_response (GtkDialog *dialog, int response_id)
if (EMP_STR_EMPTY (contact_id) || connection == NULL) goto out;
empathy_dispatcher_chat_with_contact_id (connection, contact_id,
- gtk_get_current_event_time (), NULL, NULL);
+ gtk_get_current_event_time ());
out:
gtk_widget_destroy (GTK_WIDGET (dialog));