aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-08-22 20:24:56 +0100
committerConor Curran <conor.curran@canonical.com>2011-08-22 20:24:56 +0100
commitca8ee2aec023d95d73e3563d45bc1b660a548f40 (patch)
tree153866944a614f55efbb69c63811408ba5745d85
parentfaa1e437d22814566c4e8e0cc9db9c2546192cbe (diff)
downloadayatana-indicator-session-ca8ee2aec023d95d73e3563d45bc1b660a548f40.tar.gz
ayatana-indicator-session-ca8ee2aec023d95d73e3563d45bc1b660a548f40.tar.bz2
ayatana-indicator-session-ca8ee2aec023d95d73e3563d45bc1b660a548f40.zip
uncomment signal subscription that doesn't work
-rw-r--r--src/users-service-dbus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users-service-dbus.c b/src/users-service-dbus.c
index 07ce889..4b41f4b 100644
--- a/src/users-service-dbus.c
+++ b/src/users-service-dbus.c
@@ -772,14 +772,14 @@ sync_users (UsersServiceDbus *self)
}
// Can't subscribe to the Changed signal on each individual user path
// for some reason.
- /*dbus_g_proxy_add_signal (proxy,
+ dbus_g_proxy_add_signal (proxy,
"Changed",
G_TYPE_INVALID);
dbus_g_proxy_connect_signal (proxy, "Changed",
G_CALLBACK(user_changed),
self,
- NULL);*/
+ NULL);
user->uid = g_value_get_uint64 (g_hash_table_lookup (properties, "Uid"));
user->user_name = g_strdup (g_value_get_string (g_hash_table_lookup (properties, "UserName")));
user->real_name = g_strdup (g_value_get_string (g_hash_table_lookup (properties, "RealName")));