summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2015-02-16 08:47:22 -0500
committerRay Strode <rstrode@redhat.com>2015-02-16 23:40:10 -0500
commit8d67860935548bdd09b33628044de4b552ae3e73 (patch)
treeedbc29e4cdd50c9feede4f112309c2e932e483b6
parent3c4f14c5a8d6a8ef1fcfa9e9e01bb34221d3dda5 (diff)
downloadgdm-8d67860935548bdd09b33628044de4b552ae3e73.tar.gz
local-display: don't manage automatically
Now that local displays register themselves and registration leads to the displays getting managed, we don't need to manage explicitly (and prematurely).
-rw-r--r--daemon/gdm-local-display.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/daemon/gdm-local-display.c b/daemon/gdm-local-display.c
index d79212d7..6fc2e60f 100644
--- a/daemon/gdm-local-display.c
+++ b/daemon/gdm-local-display.c
@@ -119,14 +119,6 @@ gdm_local_display_prepare (GdmDisplay *display)
}
static void
-gdm_local_display_manage (GdmDisplay *display)
-{
- GdmLocalDisplay *self = GDM_LOCAL_DISPLAY (display);
-
- g_object_set (G_OBJECT (self), "status", GDM_DISPLAY_MANAGED, NULL);
-}
-
-static void
gdm_local_display_class_init (GdmLocalDisplayClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
@@ -136,7 +128,6 @@ gdm_local_display_class_init (GdmLocalDisplayClass *klass)
object_class->finalize = gdm_local_display_finalize;
display_class->prepare = gdm_local_display_prepare;
- display_class->manage = gdm_local_display_manage;
g_type_class_add_private (klass, sizeof (GdmLocalDisplayPrivate));
}