moved method from private to protected.
This commit is contained in:
parent
3637caf68c
commit
bb769a9eb6
2 changed files with 3 additions and 2 deletions
|
@ -88,7 +88,7 @@ namespace Oxygen
|
||||||
//! move down
|
//! move down
|
||||||
virtual void down( void );
|
virtual void down( void );
|
||||||
|
|
||||||
private:
|
protected:
|
||||||
|
|
||||||
//! resize columns
|
//! resize columns
|
||||||
void resizeColumns( void ) const;
|
void resizeColumns( void ) const;
|
||||||
|
@ -96,6 +96,8 @@ namespace Oxygen
|
||||||
//! check exception
|
//! check exception
|
||||||
bool checkException( Exception& );
|
bool checkException( Exception& );
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
//! default configuration
|
//! default configuration
|
||||||
Configuration _defaultConfiguration;
|
Configuration _defaultConfiguration;
|
||||||
|
|
||||||
|
|
|
@ -193,7 +193,6 @@ namespace Oxygen
|
||||||
if( titleAlignment() != defaultConfiguration.titleAlignment() ) group.writeEntry( OxygenConfig::TITLE_ALIGNMENT, titleAlignmentName( false ) );
|
if( titleAlignment() != defaultConfiguration.titleAlignment() ) group.writeEntry( OxygenConfig::TITLE_ALIGNMENT, titleAlignmentName( false ) );
|
||||||
if( centerTitleOnFullWidth() != defaultConfiguration.centerTitleOnFullWidth() ) group.writeEntry( OxygenConfig::CENTER_TITLE_ON_FULL_WIDTH, centerTitleOnFullWidth() );
|
if( centerTitleOnFullWidth() != defaultConfiguration.centerTitleOnFullWidth() ) group.writeEntry( OxygenConfig::CENTER_TITLE_ON_FULL_WIDTH, centerTitleOnFullWidth() );
|
||||||
if( buttonSize() != defaultConfiguration.buttonSize() ) group.writeEntry( OxygenConfig::BUTTON_SIZE, buttonSizeName( false ) );
|
if( buttonSize() != defaultConfiguration.buttonSize() ) group.writeEntry( OxygenConfig::BUTTON_SIZE, buttonSizeName( false ) );
|
||||||
|
|
||||||
if( blendColor() != defaultConfiguration.blendColor() ) group.writeEntry( OxygenConfig::BLEND_COLOR, blendColorName( false ) );
|
if( blendColor() != defaultConfiguration.blendColor() ) group.writeEntry( OxygenConfig::BLEND_COLOR, blendColorName( false ) );
|
||||||
if( frameBorder() != defaultConfiguration.frameBorder() ) group.writeEntry( OxygenConfig::FRAME_BORDER, frameBorderName( false ) );
|
if( frameBorder() != defaultConfiguration.frameBorder() ) group.writeEntry( OxygenConfig::FRAME_BORDER, frameBorderName( false ) );
|
||||||
if( sizeGripMode() != defaultConfiguration.sizeGripMode() ) group.writeEntry( OxygenConfig::SIZE_GRIP_MODE, sizeGripModeName( false ) );
|
if( sizeGripMode() != defaultConfiguration.sizeGripMode() ) group.writeEntry( OxygenConfig::SIZE_GRIP_MODE, sizeGripModeName( false ) );
|
||||||
|
|
Loading…
Reference in a new issue