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 /src/empathy.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 'src/empathy.c')
-rw-r--r-- | src/empathy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy.c b/src/empathy.c index e03e43aa6..e18288c35 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -52,7 +52,7 @@ #include <libempathy/empathy-account-settings.h> #include <libempathy/empathy-connectivity.h> #include <libempathy/empathy-connection-managers.h> -#include <libempathy/empathy-dispatcher.h> +#include <libempathy/empathy-request-util.h> #include <libempathy/empathy-ft-factory.h> #include <libempathy/empathy-gsettings.h> #include <libempathy/empathy-tp-chat.h> @@ -539,7 +539,7 @@ account_status_changed_cb (TpAccount *account, if (new_status != TP_CONNECTION_STATUS_CONNECTED) return; - empathy_dispatcher_join_muc (account, + empathy_join_muc (account, empathy_chatroom_get_room (room), TP_USER_ACTION_TIME_NOT_USER_ACTION); } @@ -587,7 +587,7 @@ account_manager_chatroom_ready_cb (GObject *source_object, } else { - empathy_dispatcher_join_muc (account, + empathy_join_muc (account, empathy_chatroom_get_room (room), TP_USER_ACTION_TIME_NOT_USER_ACTION); } |