diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-22 20:24:56 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-22 20:24:56 +0100 |
commit | ca8ee2aec023d95d73e3563d45bc1b660a548f40 (patch) | |
tree | 153866944a614f55efbb69c63811408ba5745d85 | |
parent | faa1e437d22814566c4e8e0cc9db9c2546192cbe (diff) | |
download | ayatana-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.c | 4 |
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"))); |