diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-11 20:32:02 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-11 20:32:02 +0800 |
commit | 8a8ba7a5697c6e5494854c99dc9aa4a7fc7a45bd (patch) | |
tree | cac564a1043274b2f3d53e814839f086666c583b /libempathy-gtk/empathy-new-message-dialog.c | |
parent | d82293953e49e54dbdaba7f0fe71ef6387099e2f (diff) | |
download | gsoc2013-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/empathy-new-message-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-new-message-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |