summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-07-22 20:18:55 -0400
committerMatthias Clasen <mclasen@redhat.com>2010-07-22 20:18:55 -0400
commitc42c68fb48804928dae272ada12568dea569f64a (patch)
tree0e33ffbf8a3775d571c3e44e1103eccdde43d35e
parenta9957658072684aa4e78257217e1cdda6457c045 (diff)
Remove unused UserChanged signal
This was never emitted, we have the Changed signal for individual users instead.
-rw-r--r--data/org.freedesktop.Accounts.xml13
-rw-r--r--src/daemon.c12
2 files changed, 0 insertions, 25 deletions
diff --git a/data/org.freedesktop.Accounts.xml b/data/org.freedesktop.Accounts.xml
index 9c19761..85fc4cd 100644
--- a/data/org.freedesktop.Accounts.xml
+++ b/data/org.freedesktop.Accounts.xml
@@ -167,19 +167,6 @@
</doc:doc>
</signal>
- <signal name="UserChanged">
- <arg name="user" type="o">
- <doc:doc><doc:summary>Object path of the user that was changed.</doc:summary></doc:doc>
- </arg>
- <doc:doc>
- <doc:description>
- <doc:para>
- Emitted when a user is changed.
- </doc:para>
- </doc:description>
- </doc:doc>
- </signal>
-
<property name="DaemonVersion" type="s" access="read">
<doc:doc>
<doc:description>
diff --git a/src/daemon.c b/src/daemon.c
index 8d680c8..25ab375 100644
--- a/src/daemon.c
+++ b/src/daemon.c
@@ -82,7 +82,6 @@ enum {
enum {
USER_ADDED,
USER_REMOVED,
- USER_CHANGED,
LAST_SIGNAL
};
@@ -198,17 +197,6 @@ daemon_class_init (DaemonClass *klass)
1,
DBUS_TYPE_G_OBJECT_PATH);
- signals[USER_CHANGED] = g_signal_new ("user-changed",
- G_OBJECT_CLASS_TYPE (klass),
- G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
- 0,
- NULL,
- NULL,
- g_cclosure_marshal_VOID__BOXED,
- G_TYPE_NONE,
- 1,
- DBUS_TYPE_G_OBJECT_PATH);
-
dbus_g_object_type_install_info (TYPE_DAEMON,
&dbus_glib_daemon_object_info);