diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-27 23:03:11 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-27 23:03:11 +0800 |
commit | 246115e48e4b1103132695f20a80bf74fe3640c2 (patch) | |
tree | df3f1bb4f786911ef44fb3db6656d5762640c573 | |
parent | 9e50b650fef38479ad10c5518e4c85a13f2d7a6e (diff) | |
download | gsoc2013-empathy-246115e48e4b1103132695f20a80bf74fe3640c2.tar gsoc2013-empathy-246115e48e4b1103132695f20a80bf74fe3640c2.tar.gz gsoc2013-empathy-246115e48e4b1103132695f20a80bf74fe3640c2.tar.bz2 gsoc2013-empathy-246115e48e4b1103132695f20a80bf74fe3640c2.tar.lz gsoc2013-empathy-246115e48e4b1103132695f20a80bf74fe3640c2.tar.xz gsoc2013-empathy-246115e48e4b1103132695f20a80bf74fe3640c2.tar.zst gsoc2013-empathy-246115e48e4b1103132695f20a80bf74fe3640c2.zip |
coding style fixes
-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 |