diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-07 21:02:52 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-17 16:53:48 +0800 |
commit | 23d90f884b28cabd3b9b986998c118314a9238f9 (patch) | |
tree | 0d8be2485fd833194b2543979a0afbf086a038b5 /libempathy-gtk/empathy-chat.c | |
parent | a7422e3aa529737591539a1e01889646c99e924b (diff) | |
download | gsoc2013-empathy-23d90f884b28cabd3b9b986998c118314a9238f9.tar gsoc2013-empathy-23d90f884b28cabd3b9b986998c118314a9238f9.tar.gz gsoc2013-empathy-23d90f884b28cabd3b9b986998c118314a9238f9.tar.bz2 gsoc2013-empathy-23d90f884b28cabd3b9b986998c118314a9238f9.tar.lz gsoc2013-empathy-23d90f884b28cabd3b9b986998c118314a9238f9.tar.xz gsoc2013-empathy-23d90f884b28cabd3b9b986998c118314a9238f9.tar.zst gsoc2013-empathy-23d90f884b28cabd3b9b986998c118314a9238f9.zip |
rename empathy-dispatcher to empathy-request-util
We don't have EmpathyDispatcher any more so this file just contains some
utility functions now.
Diffstat (limited to 'libempathy-gtk/empathy-chat.c')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index b696963ac..d1442d816 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -42,7 +42,7 @@ #include <libempathy/empathy-gsettings.h> #include <libempathy/empathy-keyring.h> #include <libempathy/empathy-utils.h> -#include <libempathy/empathy-dispatcher.h> +#include <libempathy/empathy-request-util.h> #include <libempathy/empathy-marshal.h> #include <libempathy/empathy-chatroom-manager.h> #include <src/empathy-chat-window.h> @@ -249,11 +249,11 @@ account_reconnected (EmpathyChat *chat, * https://bugs.freedesktop.org/show_bug.cgi?id=13422 */ switch (priv->handle_type) { case TP_HANDLE_TYPE_CONTACT: - empathy_dispatcher_chat_with_contact_id ( + empathy_chat_with_contact_id ( account, priv->id, TP_USER_ACTION_TIME_NOT_USER_ACTION); break; case TP_HANDLE_TYPE_ROOM: - empathy_dispatcher_join_muc (account, priv->id, + empathy_join_muc (account, priv->id, TP_USER_ACTION_TIME_NOT_USER_ACTION); break; case TP_HANDLE_TYPE_NONE: @@ -739,7 +739,7 @@ empathy_chat_join_muc (EmpathyChat *chat, { EmpathyChatPriv *priv = GET_PRIV (chat); - empathy_dispatcher_join_muc (priv->account, room, + empathy_join_muc (priv->account, room, gtk_get_current_event_time ()); } |