aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-account-chooser.c
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-22 07:06:14 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-22 07:06:14 +0800
commit0b269dddf9534936735567c8f23519f0f88c949d (patch)
treed71fa473156210d8e48843e8cdfb65b69947e22d /libempathy-gtk/empathy-account-chooser.c
parent5fcaf2ec834ebd542ee6f434705acdfaf8a05368 (diff)
downloadgsoc2013-empathy-0b269dddf9534936735567c8f23519f0f88c949d.tar
gsoc2013-empathy-0b269dddf9534936735567c8f23519f0f88c949d.tar.gz
gsoc2013-empathy-0b269dddf9534936735567c8f23519f0f88c949d.tar.bz2
gsoc2013-empathy-0b269dddf9534936735567c8f23519f0f88c949d.tar.lz
gsoc2013-empathy-0b269dddf9534936735567c8f23519f0f88c949d.tar.xz
gsoc2013-empathy-0b269dddf9534936735567c8f23519f0f88c949d.tar.zst
gsoc2013-empathy-0b269dddf9534936735567c8f23519f0f88c949d.zip
Get the connection status, not the presence status string
Diffstat (limited to 'libempathy-gtk/empathy-account-chooser.c')
-rw-r--r--libempathy-gtk/empathy-account-chooser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-account-chooser.c b/libempathy-gtk/empathy-account-chooser.c
index ec2c2b18a..fa05bbcc9 100644
--- a/libempathy-gtk/empathy-account-chooser.c
+++ b/libempathy-gtk/empathy-account-chooser.c
@@ -769,7 +769,7 @@ empathy_account_chooser_filter_is_connected (EmpathyAccount *account,
{
TpConnectionStatus status;
- g_object_get (account, "status", &status, NULL);
+ g_object_get (account, "connection-status", &status, NULL);
return status == TP_CONNECTION_STATUS_CONNECTED;
}