From b9c8f8942d4d01118e73f6abddfd53d284b865c6 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 3 Jun 2010 11:00:44 +0200 Subject: factor out join_chatroom --- src/empathy-main-window.c | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) (limited to 'src/empathy-main-window.c') diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index ae1667622..22c6838a2 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -853,23 +853,33 @@ main_window_view_show_map_cb (GtkCheckMenuItem *item, } static void -main_window_favorite_chatroom_join (EmpathyChatroom *chatroom) +join_chatroom (EmpathyChatroom *chatroom, + gint64 timestamp) { TpAccount *account; TpConnection *connection; const gchar *room; account = empathy_chatroom_get_account (chatroom); - if (tp_account_get_connection_status (account, NULL) != - TP_CONNECTION_STATUS_CONNECTED) - return; connection = tp_account_get_connection (account); g_assert (connection != NULL); room = empathy_chatroom_get_room (chatroom); DEBUG ("Requesting channel for '%s'", room); - empathy_dispatcher_join_muc (connection, room, - gtk_get_current_event_time (), NULL, NULL); + empathy_dispatcher_join_muc (connection, room, timestamp, NULL, NULL); +} + +static void +main_window_favorite_chatroom_join (EmpathyChatroom *chatroom) +{ + TpAccount *account; + + account = empathy_chatroom_get_account (chatroom); + if (tp_account_get_connection_status (account, NULL) != + TP_CONNECTION_STATUS_CONNECTED) + return; + + join_chatroom (chatroom, gtk_get_current_event_time ()); } static void -- cgit v1.2.3