From 3fd88cc16521375b0fdaef23419c504f9ddd264c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Fri, 8 Apr 2005 14:31:00 +0000 Subject: [PATCH] Revert part of the change done for #47757, using a shortcut without a modifier for KDE-style Alt+Tab simply doesn't make sense. BUG: 103262 svn path=/trunk/kdebase/kwin/; revision=404069 --- tabbox.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tabbox.cpp b/tabbox.cpp index 3cba3b23be..5d1f01c1c7 100644 --- a/tabbox.cpp +++ b/tabbox.cpp @@ -1,4 +1,4 @@ -/********x********************************************************* +/***************************************************************** KWin - the KDE window manager This file is part of the KDE project. @@ -739,9 +739,7 @@ void Workspace::slotWalkThroughWindows() else // if the shortcut has no modifiers, don't show the tabbox, // don't grab, but simply go to the next window - // use the CDE style, because with KDE style it would cycle - // between the active and previously active window - CDEWalkThroughWindows( true ); + KDEOneStepThroughWindows( true ); } } @@ -765,7 +763,7 @@ void Workspace::slotWalkBackThroughWindows() } else { - CDEWalkThroughWindows( false ); + KDEOneStepThroughWindows( false ); } } }