diff options
author | Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> | 2009-07-25 23:23:38 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-07-30 06:13:20 +0800 |
commit | ab51e3524e667dce95c9b792a9cd051f4070d668 (patch) | |
tree | 8a9bafaa4192926398d1d5f620cce1c7d6e97406 /src | |
parent | 604cd696cf2af3995a3bba6317b3684255a08fc2 (diff) | |
download | gsoc2013-empathy-ab51e3524e667dce95c9b792a9cd051f4070d668.tar gsoc2013-empathy-ab51e3524e667dce95c9b792a9cd051f4070d668.tar.gz gsoc2013-empathy-ab51e3524e667dce95c9b792a9cd051f4070d668.tar.bz2 gsoc2013-empathy-ab51e3524e667dce95c9b792a9cd051f4070d668.tar.lz gsoc2013-empathy-ab51e3524e667dce95c9b792a9cd051f4070d668.tar.xz gsoc2013-empathy-ab51e3524e667dce95c9b792a9cd051f4070d668.tar.zst gsoc2013-empathy-ab51e3524e667dce95c9b792a9cd051f4070d668.zip |
Use the right property name when getting the connection status.
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index f358be8b4..35acf69e8 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -774,7 +774,7 @@ accounts_dialog_add_account (EmpathyAccountsDialog *dialog, EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog); model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview)); - g_object_get (account, "status", &status, NULL); + g_object_get (account, "connection-status", &status, NULL); name = empathy_account_get_display_name (account); enabled = empathy_account_is_enabled (account); |