From c703dca4b2c3be8c51118788539e46a7d67ab541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sat, 9 Jul 2011 10:25:27 +0200 Subject: [PATCH] Remove leftover from splitting out the Outline handling Should have been removed with 44b83f951aeb3221c43ef3356e46650248b673cd --- tabbox/tabboxhandler.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tabbox/tabboxhandler.cpp b/tabbox/tabboxhandler.cpp index 6651c8c824..5ffb27810f 100644 --- a/tabbox/tabboxhandler.cpp +++ b/tabbox/tabboxhandler.cpp @@ -75,10 +75,6 @@ public: TabBoxConfig config; TabBoxView* view; QModelIndex index; - Window outlineLeft; - Window outlineRight; - Window outlineTop; - Window outlineBottom; /** * Indicates if the tabbox is shown. * Used to determine if the outline has to be updated, etc. @@ -96,16 +92,6 @@ TabBoxHandlerPrivate::TabBoxHandlerPrivate(TabBoxHandler *q) lastRaisedClientSucc = 0; config = TabBoxConfig(); view = new TabBoxView(); - XSetWindowAttributes attr; - attr.override_redirect = 1; - outlineLeft = XCreateWindow(QX11Info::display(), QX11Info::appRootWindow(), 0, 0, 1, 1, 0, - CopyFromParent, CopyFromParent, CopyFromParent, CWOverrideRedirect, &attr); - outlineRight = XCreateWindow(QX11Info::display(), QX11Info::appRootWindow(), 0, 0, 1, 1, 0, - CopyFromParent, CopyFromParent, CopyFromParent, CWOverrideRedirect, &attr); - outlineTop = XCreateWindow(QX11Info::display(), QX11Info::appRootWindow(), 0, 0, 1, 1, 0, - CopyFromParent, CopyFromParent, CopyFromParent, CWOverrideRedirect, &attr); - outlineBottom = XCreateWindow(QX11Info::display(), QX11Info::appRootWindow(), 0, 0, 1, 1, 0, - CopyFromParent, CopyFromParent, CopyFromParent, CWOverrideRedirect, &attr); // load the layouts parseConfig(KStandardDirs::locate("data", "kwin/DefaultTabBoxLayouts.xml"));