diff options
author | Cody Russell <crussell@canonical.com> | 2009-09-10 19:49:40 -0500 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2009-09-10 19:49:40 -0500 |
commit | 51bdf6d04ac6b98019c760c7f12f4315c09cdcb8 (patch) | |
tree | e956a57abd9e5674f7e08f5caa7fb30a50072df4 /src/users-service-dbus.h | |
parent | a29d1126f86a164d598cda4e4bf000c8afc675c7 (diff) | |
download | ayatana-indicator-session-51bdf6d04ac6b98019c760c7f12f4315c09cdcb8.tar.gz ayatana-indicator-session-51bdf6d04ac6b98019c760c7f12f4315c09cdcb8.tar.bz2 ayatana-indicator-session-51bdf6d04ac6b98019c760c7f12f4315c09cdcb8.zip |
fixes for adding/removing users
Diffstat (limited to 'src/users-service-dbus.h')
-rw-r--r-- | src/users-service-dbus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users-service-dbus.h b/src/users-service-dbus.h index df07e61..5889aba 100644 --- a/src/users-service-dbus.h +++ b/src/users-service-dbus.h @@ -58,8 +58,8 @@ struct _UsersServiceDbusClass { void (* users_loaded) (UsersServiceDbus *self, gpointer user_data); - void (* user_added) (UsersServiceDbus *self, gint64 uid, gpointer user_data); - void (* user_removed) (UsersServiceDbus *self, gint64 uid, gpointer user_data); + void (* user_added) (UsersServiceDbus *self, UserData *user, gpointer user_data); + void (* user_removed) (UsersServiceDbus *self, UserData *user, gpointer user_data); void (* user_updated) (UsersServiceDbus *self, gint64 uid, gpointer user_data); }; |