Remove leftover from splitting out the Outline handling
Should have been removed with 44b83f951aeb3221c43ef3356e46650248b673cd
This commit is contained in:
parent
2ae92ab509
commit
c703dca4b2
1 changed files with 0 additions and 14 deletions
|
@ -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"));
|
||||
|
|
Loading…
Reference in a new issue