summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-06-09 02:19:10 +0000
committerAdam Jackson <ajax@nwnk.net>2005-06-09 02:19:10 +0000
commite3cdec7cdcd76f6294ba1f296e4bcdee43b1eb3c (patch)
treec90168de5da3e7d8b44e71adb8e4b5623b6437f1
parent0f7136191b54e587b66958985e14d8b0687c5ee1 (diff)
Bug #1880: Remove unused xnestConfineWindow. (Mark McLoughlin)
-rw-r--r--hw/xnest/Display.c8
-rw-r--r--hw/xnest/Display.h1
2 files changed, 0 insertions, 9 deletions
diff --git a/hw/xnest/Display.c b/hw/xnest/Display.c
index 301ab139a..602a6c9b2 100644
--- a/hw/xnest/Display.c
+++ b/hw/xnest/Display.c
@@ -48,7 +48,6 @@ Drawable xnestDefaultDrawables[MAXDEPTH + 1];
Pixmap xnestIconBitmap;
Pixmap xnestScreenSaverPixmap;
XlibGC xnestBitmapGC;
-Window xnestConfineWindow;
unsigned long xnestEventMask;
void
@@ -136,13 +135,6 @@ xnestOpenDisplay(int argc, char *argv[])
xnestBitmapGC = XCreateGC(xnestDisplay, xnestDefaultDrawables[1], 0L, NULL);
- xnestConfineWindow = XCreateWindow(xnestDisplay,
- DefaultRootWindow(xnestDisplay),
- 0, 0, 1, 1, 0, 0,
- InputOnly,
- CopyFromParent,
- 0L, NULL);
-
if (!(xnestUserGeometry & XValue))
xnestX = 0;
diff --git a/hw/xnest/Display.h b/hw/xnest/Display.h
index 78df26969..85aedc583 100644
--- a/hw/xnest/Display.h
+++ b/hw/xnest/Display.h
@@ -38,7 +38,6 @@ extern Drawable xnestDefaultDrawables[MAXDEPTH + 1];
extern Pixmap xnestIconBitmap;
extern Pixmap xnestScreenSaverPixmap;
extern XlibGC xnestBitmapGC;
-extern Window xnestConfineWindow;
extern unsigned long xnestEventMask;
void xnestOpenDisplay(int argc, char *argv[]);