aboutsummaryrefslogtreecommitdiff
path: root/src/status-provider-mc5.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-08 10:54:56 -0400
committerTed Gould <ted@canonical.com>2009-10-08 10:54:56 -0400
commit69960ed469a9907deb10801f13f77f6b333c8163 (patch)
tree06bf0c866f89990eae7013fbd1b9d47132bcb3bc /src/status-provider-mc5.c
parent9ace1e376aac193ba04bcfb0365af774bf96a4e5 (diff)
parent69c44b63c492193ea74df9ff48e82be5526b7b5f (diff)
downloadayatana-indicator-session-69960ed469a9907deb10801f13f77f6b333c8163.tar.gz
ayatana-indicator-session-69960ed469a9907deb10801f13f77f6b333c8163.tar.bz2
ayatana-indicator-session-69960ed469a9907deb10801f13f77f6b333c8163.zip
Changing the icon so that if you are disconnected it is
'system-shutdown-panel' and making sure that we see it sometimes by not allocating the EmpathyAccountManager isn't allocated until status is set. (LP: #432635)
Diffstat (limited to 'src/status-provider-mc5.c')
-rw-r--r--src/status-provider-mc5.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/status-provider-mc5.c b/src/status-provider-mc5.c
index 813ce3e..671e459 100644
--- a/src/status-provider-mc5.c
+++ b/src/status-provider-mc5.c
@@ -113,8 +113,8 @@ status_provider_mc5_init (StatusProviderMC5 *self)
{
StatusProviderMC5Private * priv = STATUS_PROVIDER_MC5_GET_PRIVATE(self);
- priv->status = STATUS_PROVIDER_STATUS_OFFLINE;
- priv->manager = EMPATHY_ACCOUNT_MANAGER(g_object_new(EMPATHY_TYPE_ACCOUNT_MANAGER, NULL));
+ priv->status = STATUS_PROVIDER_STATUS_DISCONNECTED;
+ priv->manager = NULL;
g_signal_connect(G_OBJECT(priv->manager), "global-presence-changed", G_CALLBACK(presence_changed), self);
@@ -169,8 +169,7 @@ set_status (StatusProvider * sp, StatusProviderStatus status)
{
StatusProviderMC5Private * priv = STATUS_PROVIDER_MC5_GET_PRIVATE(sp);
if (priv->manager == NULL) {
- priv->status = STATUS_PROVIDER_STATUS_DISCONNECTED;
- return;
+ priv->manager = EMPATHY_ACCOUNT_MANAGER(g_object_new(EMPATHY_TYPE_ACCOUNT_MANAGER, NULL));
}
empathy_account_manager_request_global_presence(priv->manager, sp_to_tp_map[status], sp_to_mc_map[status], "");