diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2007-12-03 06:38:02 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-12-03 06:38:02 +0800 |
commit | 7bf5562a19ecac3c59dc23ebe507112e2745b635 (patch) | |
tree | 9fccd6613f968d0fc40b518399d7858cb3c609fe /libempathy-gtk/empathy-contact-dialogs.c | |
parent | d54baf1615b3d019878f7dac66303de77737a6f0 (diff) | |
download | gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.gz gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.bz2 gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.lz gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.xz gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.tar.zst gsoc2013-empathy-7bf5562a19ecac3c59dc23ebe507112e2745b635.zip |
Conflicts:
ChangeLog
svn path=/trunk/; revision=455
Diffstat (limited to 'libempathy-gtk/empathy-contact-dialogs.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-dialogs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-contact-dialogs.c b/libempathy-gtk/empathy-contact-dialogs.c index 54d62a3d0..68f63f646 100644 --- a/libempathy-gtk/empathy-contact-dialogs.c +++ b/libempathy-gtk/empathy-contact-dialogs.c @@ -233,15 +233,15 @@ static gboolean can_add_contact_to_account (McAccount *account, gpointer user_data) { - MissionControl *mc; - TelepathyConnectionStatus status; - McProfile *profile; - const gchar *protocol_name; + MissionControl *mc; + TpConnectionStatus status; + McProfile *profile; + const gchar *protocol_name; mc = empathy_mission_control_new (); status = mission_control_get_connection_status (mc, account, NULL); g_object_unref (mc); - if (status != TP_CONN_STATUS_CONNECTED) { + if (status != TP_CONNECTION_STATUS_CONNECTED) { /* Account is disconnected */ return FALSE; } |