aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-15 23:49:59 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 16:48:41 +0800
commit207cbc71756c2891d4662fd9a060a9aeaa69650d (patch)
tree1e40ab901d5f86abe935a0d2ce411f2de36f174c
parent6d8d557d4c17e8770cfebd442f7eabd8d014052b (diff)
downloadgsoc2013-empathy-207cbc71756c2891d4662fd9a060a9aeaa69650d.tar
gsoc2013-empathy-207cbc71756c2891d4662fd9a060a9aeaa69650d.tar.gz
gsoc2013-empathy-207cbc71756c2891d4662fd9a060a9aeaa69650d.tar.bz2
gsoc2013-empathy-207cbc71756c2891d4662fd9a060a9aeaa69650d.tar.lz
gsoc2013-empathy-207cbc71756c2891d4662fd9a060a9aeaa69650d.tar.xz
gsoc2013-empathy-207cbc71756c2891d4662fd9a060a9aeaa69650d.tar.zst
gsoc2013-empathy-207cbc71756c2891d4662fd9a060a9aeaa69650d.zip
empathy-chat-window: fix coding style
-rw-r--r--src/empathy-chat-window.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 859b53b6f..4d6a092d3 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -954,8 +954,8 @@ chat_window_new_message_cb (EmpathyChat *chat,
return;
}
- /* If empathy_chat_is_room() returns TRUE, that means it's a named MUC.
- * If empathy_chat_get_remote_contact() returns NULL, that means it's
+ /* If empathy_chat_is_room () returns TRUE, that means it's a named MUC.
+ * If empathy_chat_get_remote_contact () returns NULL, that means it's
* an unamed MUC (msn-like).
* In case of a MUC, we set urgency only if the message contains our
* alias. */
@@ -1213,7 +1213,7 @@ chat_window_drag_data_received (GtkWidget *widget,
/* We should return TRUE to remove the data when doing
* GDK_ACTION_MOVE, but we don't here otherwise it has
* weird consequences, and we handle that internally
- * anyway with add_chat() and remove_chat().
+ * anyway with add_chat () and remove_chat ().
*/
gtk_drag_finish (context, TRUE, FALSE, time);
}
@@ -1223,7 +1223,7 @@ chat_window_drag_data_received (GtkWidget *widget,
DEBUG ("DND tab");
- chat = (void*) selection->data;
+ chat = (void *) selection->data;
old_window = chat_window_find_chat (*chat);
if (old_window) {
@@ -1244,7 +1244,7 @@ chat_window_drag_data_received (GtkWidget *widget,
/* We should return TRUE to remove the data when doing
* GDK_ACTION_MOVE, but we don't here otherwise it has
* weird consequences, and we handle that internally
- * anyway with add_chat() and remove_chat().
+ * anyway with add_chat () and remove_chat ().
*/
gtk_drag_finish (context, TRUE, FALSE, time);
} else {