[empathy] empathy_chat_window_get_default: rename room_filter to room



commit 247a7866ebdf6f51f357c89a3ffb6e801188f683
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Mon Dec 7 16:32:27 2009 +0000

    empathy_chat_window_get_default: rename room_filter to room

 src/empathy-chat-window.c |    6 +++---
 src/empathy-chat-window.h |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 7d24016..2ceb1e8 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1848,7 +1848,7 @@ empathy_chat_window_new (void)
  * be added.
  */
 EmpathyChatWindow *
-empathy_chat_window_get_default (gboolean room_filter)
+empathy_chat_window_get_default (gboolean room)
 {
 	GList    *l;
 	gboolean  separate_windows = TRUE;
@@ -1876,11 +1876,11 @@ empathy_chat_window_get_default (gboolean room_filter)
 			nb_rooms = empathy_chat_window_get_nb_rooms (chat_window);
 
 			/* We add a new room only if the window has at least one room */
-			if (room_filter && nb_rooms == 0)
+			if (room && nb_rooms == 0)
 				continue;
 
 			/* We add a new 1-1 chat only if the window has at least one 1-1 chat */
-			if (!room_filter && nb_rooms > 0)
+			if (!room && nb_rooms > 0)
 				continue;
 
 			/* Found a visible window on this desktop */
diff --git a/src/empathy-chat-window.h b/src/empathy-chat-window.h
index 9981fad..a347352 100644
--- a/src/empathy-chat-window.h
+++ b/src/empathy-chat-window.h
@@ -57,7 +57,7 @@ struct _EmpathyChatWindowClass {
 };
 
 GType              empathy_chat_window_get_type       (void);
-EmpathyChatWindow *empathy_chat_window_get_default    (gboolean room_filter);
+EmpathyChatWindow *empathy_chat_window_get_default    (gboolean room);
 EmpathyChatWindow *empathy_chat_window_new            (void);
 GtkWidget *        empathy_chat_window_get_dialog     (EmpathyChatWindow *window);
 void               empathy_chat_window_add_chat       (EmpathyChatWindow *window,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]