diff options
Diffstat (limited to 'libempathy-gtk/empathy-chat.c')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index a979c9e76..c08b49c3f 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -523,7 +523,7 @@ chat_message_received_cb (EmpathyTpChat *tp_chat, static void chat_send_error_cb (EmpathyTpChat *tp_chat, - EmpathyMessage *message, + const gchar *message_body, TpChannelTextSendError error_code, EmpathyChat *chat) { @@ -552,7 +552,7 @@ chat_send_error_cb (EmpathyTpChat *tp_chat, } str = g_strdup_printf (_("Error sending message '%s': %s"), - empathy_message_get_body (message), + message_body, error); empathy_chat_view_append_event (chat->view, str); g_free (str); |