diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-06-24 22:43:51 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-06-25 00:32:27 +0800 |
commit | 2e8c433a836739bcaf62bd50cea4c3992534818e (patch) | |
tree | b65a97e858894b1f7cc63179515488b46ca7fa70 | |
parent | d462954efb034d07c1c4a274c05d171cd476f276 (diff) | |
download | gsoc2013-empathy-2e8c433a836739bcaf62bd50cea4c3992534818e.tar gsoc2013-empathy-2e8c433a836739bcaf62bd50cea4c3992534818e.tar.gz gsoc2013-empathy-2e8c433a836739bcaf62bd50cea4c3992534818e.tar.bz2 gsoc2013-empathy-2e8c433a836739bcaf62bd50cea4c3992534818e.tar.lz gsoc2013-empathy-2e8c433a836739bcaf62bd50cea4c3992534818e.tar.xz gsoc2013-empathy-2e8c433a836739bcaf62bd50cea4c3992534818e.tar.zst gsoc2013-empathy-2e8c433a836739bcaf62bd50cea4c3992534818e.zip |
empathy-chat: remove trailing tabs
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index ca137d2f1..9c5e47b0e 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -207,7 +207,7 @@ chat_new_connection_cb (EmpathyAccountManager *manager, if (!priv->tp_chat && empathy_account_equal (account, priv->account) && priv->handle_type != TP_HANDLE_TYPE_NONE && !EMP_STR_EMPTY (priv->id)) { - + DEBUG ("Account reconnected, request a new Text channel"); switch (priv->handle_type) { @@ -302,7 +302,7 @@ chat_sent_message_add (EmpathyChat *chat, /* Save the sent message in our repeat buffer */ list = priv->sent_messages; - + /* Remove any other occurances of this msg */ while ((item = g_slist_find_custom (list, str, (GCompareFunc) strcmp)) != NULL) { list = g_slist_remove_link (list, item); @@ -333,7 +333,7 @@ chat_sent_message_get_next (EmpathyChat *chat) { EmpathyChatPriv *priv; gint max; - + priv = GET_PRIV (chat); if (!priv->sent_messages) { @@ -346,7 +346,7 @@ chat_sent_message_get_next (EmpathyChat *chat) if (priv->sent_messages_index < max) { priv->sent_messages_index++; } - + DEBUG ("Returning next message index:%d", priv->sent_messages_index); return g_slist_nth_data (priv->sent_messages, priv->sent_messages_index); @@ -360,7 +360,7 @@ chat_sent_message_get_last (EmpathyChat *chat) g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL); priv = GET_PRIV (chat); - + if (!priv->sent_messages) { DEBUG ("No sent messages, last message is NULL"); return NULL; |