new default window decoration

svn path=/trunk/kdebase/kwin/; revision=347287
icc-effect-5.14.5
Frank Karlitschek 2004-09-17 21:09:28 +00:00
parent e3ef1b9967
commit 5640dbc81b
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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
}