diff options
-rw-r--r-- | src/empathy-chat-window.c | 6 | ||||
-rw-r--r-- | 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 7d2401677..2ceb1e86d 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 9981faddb..a347352a9 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, |