compile some more
svn path=/trunk/KDE/kdebase/workspace/; revision=635518
This commit is contained in:
parent
ab1fe691d8
commit
ce11a2cd80
2 changed files with 4 additions and 4 deletions
|
@ -197,9 +197,9 @@ unsigned long KDEDefaultHandler::readConfig( bool update )
|
|||
unsigned long changed = 0;
|
||||
KConfigGroup conf(KGlobal::config(), "KDEDefault");
|
||||
|
||||
bool new_showGrabBar = conf->readEntry("ShowGrabBar", true);
|
||||
bool new_showTitleBarStipple = conf->readEntry("ShowTitleBarStipple", true);
|
||||
bool new_useGradients = conf->readEntry("UseGradients", true);
|
||||
bool new_showGrabBar = conf.readEntry("ShowGrabBar", true);
|
||||
bool new_showTitleBarStipple = conf.readEntry("ShowTitleBarStipple", true);
|
||||
bool new_useGradients = conf.readEntry("UseGradients", true);
|
||||
int new_titleHeight = QFontMetrics(options()->font(true)).height();
|
||||
int new_toolTitleHeight = QFontMetrics(options()->font(true, true)).height()-2;
|
||||
|
||||
|
|
|
@ -463,7 +463,7 @@ void KWinDecorationModule::readConfig( const KConfigGroup & conf )
|
|||
|
||||
// Buttons tab
|
||||
// ============
|
||||
bool customPositions = conf->readEntry("CustomButtonPositions", false);
|
||||
bool customPositions = conf.readEntry("CustomButtonPositions", false);
|
||||
cbUseCustomButtonPositions->setChecked( customPositions );
|
||||
buttonPositionWidget->setEnabled( customPositions );
|
||||
// Menu and onAllDesktops buttons are default on LHS
|
||||
|
|
Loading…
Reference in a new issue