From 246115e48e4b1103132695f20a80bf74fe3640c2 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 27 May 2010 17:03:11 +0200 Subject: [PATCH] coding style fixes --- libempathy/empathy-chatroom-manager.c | 2 +- src/empathy-chat-window.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libempathy/empathy-chatroom-manager.c b/libempathy/empathy-chatroom-manager.c index 57aa7540..be91657b 100644 --- a/libempathy/empathy-chatroom-manager.c +++ b/libempathy/empathy-chatroom-manager.c @@ -657,7 +657,7 @@ empathy_chatroom_manager_ensure_chatroom (EmpathyChatroomManager *manager, chatroom = empathy_chatroom_manager_find (manager, account, room); if (chatroom) { - return g_object_ref(chatroom); + return g_object_ref (chatroom); } else { chatroom = empathy_chatroom_new_full (account, room, diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 97b7026c..73c5f947 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -843,7 +843,7 @@ chat_window_favorite_toggled_cb (GtkToggleAction *toggle_action, empathy_chat_get_name (priv->current_chat)); empathy_chatroom_set_favorite (chatroom, active); - g_object_unref(chatroom); + g_object_unref (chatroom); } static void @@ -867,7 +867,7 @@ chat_window_always_urgent_toggled_cb (GtkToggleAction *toggle_action, empathy_chat_get_name (priv->current_chat)); empathy_chatroom_set_always_urgent (chatroom, active); - g_object_unref(chatroom); + g_object_unref (chatroom); } static void -- 2.39.2