diff options
-rw-r--r-- | libempathy/empathy-chatroom-manager.c | 2 | ||||
-rw-r--r-- | 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 57aa75402..be91657b2 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 97b7026c5..73c5f9472 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 |