aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-17 22:36:54 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-18 15:29:33 +0800
commit682b70335bf789a60508f1d0b1b1ab119fc3f4dc (patch)
tree82abbb22dcb1ec1ca69df633a8c7b630b83c62bc /libempathy-gtk
parentea6b6013b18549e10cda58468b42e6fc732e6fcd (diff)
downloadgsoc2013-empathy-682b70335bf789a60508f1d0b1b1ab119fc3f4dc.tar
gsoc2013-empathy-682b70335bf789a60508f1d0b1b1ab119fc3f4dc.tar.gz
gsoc2013-empathy-682b70335bf789a60508f1d0b1b1ab119fc3f4dc.tar.bz2
gsoc2013-empathy-682b70335bf789a60508f1d0b1b1ab119fc3f4dc.tar.lz
gsoc2013-empathy-682b70335bf789a60508f1d0b1b1ab119fc3f4dc.tar.xz
gsoc2013-empathy-682b70335bf789a60508f1d0b1b1ab119fc3f4dc.tar.zst
gsoc2013-empathy-682b70335bf789a60508f1d0b1b1ab119fc3f4dc.zip
use TP_USER_ACTION_TIME_* (#627165)
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-chat.c4
-rw-r--r--libempathy-gtk/empathy-share-my-desktop.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c
index 45faea4fb..15da94c81 100644
--- a/libempathy-gtk/empathy-chat.c
+++ b/libempathy-gtk/empathy-chat.c
@@ -241,11 +241,11 @@ account_reconnected (EmpathyChat *chat,
switch (priv->handle_type) {
case TP_HANDLE_TYPE_CONTACT:
empathy_dispatcher_chat_with_contact_id (
- account, priv->id, EMPATHY_DISPATCHER_NON_USER_ACTION);
+ account, priv->id, TP_USER_ACTION_TIME_NOT_USER_ACTION);
break;
case TP_HANDLE_TYPE_ROOM:
empathy_dispatcher_join_muc (account, priv->id,
- EMPATHY_DISPATCHER_NON_USER_ACTION);
+ TP_USER_ACTION_TIME_NOT_USER_ACTION);
break;
case TP_HANDLE_TYPE_NONE:
case TP_HANDLE_TYPE_LIST:
diff --git a/libempathy-gtk/empathy-share-my-desktop.c b/libempathy-gtk/empathy-share-my-desktop.c
index a630fc2a5..01a885ada 100644
--- a/libempathy-gtk/empathy-share-my-desktop.c
+++ b/libempathy-gtk/empathy-share-my-desktop.c
@@ -77,7 +77,7 @@ empathy_share_my_desktop_share_with_contact (EmpathyContact *contact)
NULL);
req = tp_account_channel_request_new (empathy_contact_get_account (contact),
- request, EMPATHY_DISPATCHER_CURRENT_TIME);
+ request, TP_USER_ACTION_TIME_CURRENT_TIME);
tp_account_channel_request_create_channel_async (req, NULL, NULL,
create_tube_channel_cb, NULL);