From fe069f188bc3047ce7aa876e3868ac299f825103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sun, 30 Jan 2011 12:03:27 +0100 Subject: [PATCH] Option AltTabStyle not used anymore. This should have been removed together with the tabbox rewrite. --- options.cpp | 5 ----- options.h | 20 -------------------- 2 files changed, 25 deletions(-) diff --git a/options.cpp b/options.cpp index f9792836ca..39a7542d6f 100644 --- a/options.cpp +++ b/options.cpp @@ -130,11 +130,6 @@ unsigned long Options::updateSettings() else if ( val == "FocusStrictlyUnderMouse" ) focusPolicy = FocusStrictlyUnderMouse; - val = config.readEntry ("AltTabStyle", "KDE"); - altTabStyle = KDE; // what a default :-) - if ( val == "CDE" ) - altTabStyle = CDE; - separateScreenFocus = config.readEntry( "SeparateScreenFocus", false ); activeMouseScreen = config.readEntry( "ActiveMouseScreen", focusPolicy != ClickToFocus ); diff --git a/options.h b/options.h index 73a7db2dba..01cd4c4afc 100644 --- a/options.h +++ b/options.h @@ -132,26 +132,6 @@ class Options : public KDecorationOptions */ int tilingRaisePolicy; - /** - Different Alt-Tab-Styles: - - */ - enum AltTabStyle { KDE, CDE }; - AltTabStyle altTabStyle; - // whether to see Xinerama screens separately for focus (in Alt+Tab, when activating next client) bool separateScreenFocus; // whether active Xinerama screen is the one with mouse (or with the active window)