diff options
Diffstat (limited to 'src/empathy-chat-manager.c')
-rw-r--r-- | src/empathy-chat-manager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-chat-manager.c b/src/empathy-chat-manager.c index c84b5f447..c3488dc45 100644 --- a/src/empathy-chat-manager.c +++ b/src/empathy-chat-manager.c @@ -20,7 +20,7 @@ #include <telepathy-glib/telepathy-glib.h> #include <libempathy/empathy-chatroom-manager.h> -#include <libempathy/empathy-dispatcher.h> +#include <libempathy/empathy-request-util.h> #include <libempathy/empathy-utils.h> #include "empathy-chat-window.h" @@ -433,10 +433,10 @@ empathy_chat_manager_undo_closed_chat (EmpathyChatManager *self) data->room ? "room" : "contact", data->id); if (data->room) - empathy_dispatcher_join_muc (data->account, data->id, + empathy_join_muc (data->account, data->id, TP_USER_ACTION_TIME_NOT_USER_ACTION); else - empathy_dispatcher_chat_with_contact_id (data->account, data->id, + empathy_chat_with_contact_id (data->account, data->id, TP_USER_ACTION_TIME_NOT_USER_ACTION); g_signal_emit (self, signals[CLOSED_CHATS_CHANGED], 0, |