summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2009-08-04 11:02:15 -0400
committerRay Strode <rstrode@redhat.com>2009-08-04 11:02:15 -0400
commit92245e049054a031d507b67afe8cfadba979f729 (patch)
treeb21baac61bd8453d26e7fd459afdce8e62c3a6db
parent8ca8520f8b8e1031c3583400a17937f01249d11f (diff)
downloadgdm-92245e049054a031d507b67afe8cfadba979f729.tar.gz
Use object path type not string type for ck signals
It was incorrectly using the string type before.
-rw-r--r--daemon/gdm-local-display-factory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/daemon/gdm-local-display-factory.c b/daemon/gdm-local-display-factory.c
index 32e55b7c..6737c26d 100644
--- a/daemon/gdm-local-display-factory.c
+++ b/daemon/gdm-local-display-factory.c
@@ -768,14 +768,14 @@ manage_static_sessions_per_seat (GdmLocalDisplayFactory *factory,
dbus_g_object_register_marshaller (gdm_marshal_VOID__STRING_BOOLEAN_STRING_POINTER_STRING_POINTER,
G_TYPE_NONE,
- G_TYPE_STRING, G_TYPE_BOOLEAN, G_TYPE_STRING,
+ DBUS_TYPE_G_OBJECT_PATH, G_TYPE_BOOLEAN, G_TYPE_STRING,
GDM_DBUS_TYPE_G_STRING_STRING_HASHTABLE,
G_TYPE_STRING,
GDM_DBUS_TYPE_G_STRING_STRING_HASHTABLE,
G_TYPE_INVALID);
dbus_g_proxy_add_signal (proxy,
"SessionToAdd",
- G_TYPE_STRING,
+ DBUS_TYPE_G_OBJECT_PATH,
G_TYPE_BOOLEAN,
G_TYPE_STRING,
GDM_DBUS_TYPE_G_STRING_STRING_HASHTABLE,
@@ -784,7 +784,7 @@ manage_static_sessions_per_seat (GdmLocalDisplayFactory *factory,
G_TYPE_INVALID);
dbus_g_proxy_add_signal (proxy,
"SessionToRemove",
- G_TYPE_STRING,
+ DBUS_TYPE_G_OBJECT_PATH,
G_TYPE_INVALID);
dbus_g_proxy_add_signal (proxy,
"RemoveRequest",