diff options
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-account.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy/empathy-account.c b/libempathy/empathy-account.c index b82080ee0..7d89f20fc 100644 --- a/libempathy/empathy-account.c +++ b/libempathy/empathy-account.c @@ -287,7 +287,8 @@ empathy_account_update (EmpathyAccount *account, g_signal_emit (account, signals[STATUS_CHANGED], 0, old_s, priv->connection_status, priv->reason); - g_object_notify (G_OBJECT (account), "status"); + g_object_notify (G_OBJECT (account), "connection-status"); + g_object_notify (G_OBJECT (account), "connection-status-reason"); } if (presence_changed) @@ -560,7 +561,7 @@ empathy_account_class_init (EmpathyAccountClass *empathy_account_class) G_PARAM_STATIC_STRINGS | G_PARAM_READABLE)); g_object_class_install_property (object_class, PROP_CONNECTION_STATUS_REASON, - g_param_spec_uint ("status-reason", + g_param_spec_uint ("connection-status-reason", "ConnectionStatusReason", "The account connections status reason", 0, |