From 327b8e56ecbaca67d550802f2fac741a78d81eb8 Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Sat, 30 May 2009 20:15:31 +0100 Subject: Remove usage of McPresence as much as possible --- src/empathy.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/empathy.c') diff --git a/src/empathy.c b/src/empathy.c index 91d77a5e6..72cccb55e 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -545,7 +545,8 @@ main (int argc, char *argv[]) EMPATHY_PREFS_AUTOCONNECT, &autoconnect); if (autoconnect && ! no_connect && - empathy_idle_get_state (idle) <= MC_PRESENCE_OFFLINE) { + tp_connection_presence_type_cmp_availability (empathy_idle_get_state + (idle), TP_CONNECTION_PRESENCE_TYPE_OFFLINE) <= 0) { empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE); } @@ -583,7 +584,7 @@ main (int argc, char *argv[]) gtk_main (); - empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE); + empathy_idle_set_state (idle, TP_CONNECTION_PRESENCE_TYPE_OFFLINE); g_object_unref (mc); g_object_unref (idle); -- cgit