From 322ba42c23a3a107f7a62fb1c449792b616e5eba Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 15 Sep 2014 12:05:26 -0400 Subject: [PATCH] dix: Remove DIXsaveUnder bit from the Window Reviewed-by: Julien Cristau Signed-off-by: Adam Jackson --- dix/window.c | 1 - include/windowstr.h | 1 - 2 files changed, 2 deletions(-) diff --git a/dix/window.c b/dix/window.c index 52e69efa5..f227e4ce4 100644 --- a/dix/window.c +++ b/dix/window.c @@ -362,7 +362,6 @@ SetWindowToDefaults(WindowPtr pWin) pWin->cursorIsNone = TRUE; pWin->backingStore = NotUseful; - pWin->DIXsaveUnder = FALSE; pWin->backStorage = (void *) NULL; pWin->mapped = FALSE; /* off */ diff --git a/include/windowstr.h b/include/windowstr.h index 6b79bbd2e..81f5f8c3c 100644 --- a/include/windowstr.h +++ b/include/windowstr.h @@ -151,7 +151,6 @@ typedef struct _Window { unsigned cursorIsNone:1; /* else real cursor (might inherit) */ unsigned backingStore:2; unsigned saveUnder:1; - unsigned DIXsaveUnder:1; unsigned bitGravity:4; unsigned winGravity:4; unsigned overrideRedirect:1;