From 5640dbc81b47d238e7aa8cc86b3d19a22b6dabc3 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Fri, 17 Sep 2004 21:09:28 +0000 Subject: [PATCH] new default window decoration svn path=/trunk/kdebase/kwin/; revision=347287 --- kcmkwin/kwindecoration/kwindecoration.cpp | 2 +- plugins.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kcmkwin/kwindecoration/kwindecoration.cpp b/kcmkwin/kwindecoration/kwindecoration.cpp index 584f28300b..625cac3ec1 100644 --- a/kcmkwin/kwindecoration/kwindecoration.cpp +++ b/kcmkwin/kwindecoration/kwindecoration.cpp @@ -419,7 +419,7 @@ void KWinDecorationModule::readConfig( KConfig* conf ) oldLibraryName = currentLibraryName; currentLibraryName = conf->readEntry("PluginLib", - ((QPixmap::defaultDepth() > 8) ? "kwin_keramik" : "kwin_quartz")); + ((QPixmap::defaultDepth() > 8) ? "kwin_plastik" : "kwin_quartz")); QString decoName = decorationName( currentLibraryName ); // If we are using the "default" kde client, use the "default" entry. diff --git a/plugins.cpp b/plugins.cpp index 5ab58e75da..c7a4fcc15f 100644 --- a/plugins.cpp +++ b/plugins.cpp @@ -23,7 +23,7 @@ PluginMgr::PluginMgr() : KDecorationPlugins( KGlobal::config()) { defaultPlugin = (QPixmap::defaultDepth() > 8) ? - "kwin3_keramik" : "kwin3_quartz"; + "kwin3_plastik" : "kwin3_quartz"; loadPlugin( "" ); // load the plugin specified in cfg file }