moved method from private to protected.

This commit is contained in:
Hugo Pereira Da Costa 2011-07-18 12:20:58 +02:00
parent 3637caf68c
commit bb769a9eb6
2 changed files with 3 additions and 2 deletions

View file

@ -88,7 +88,7 @@ namespace Oxygen
//! move down
virtual void down( void );
private:
protected:
//! resize columns
void resizeColumns( void ) const;
@ -96,6 +96,8 @@ namespace Oxygen
//! check exception
bool checkException( Exception& );
private:
//! default configuration
Configuration _defaultConfiguration;

View file

@ -193,7 +193,6 @@ namespace Oxygen
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( buttonSize() != defaultConfiguration.buttonSize() ) group.writeEntry( OxygenConfig::BUTTON_SIZE, buttonSizeName( false ) );
if( blendColor() != defaultConfiguration.blendColor() ) group.writeEntry( OxygenConfig::BLEND_COLOR, blendColorName( false ) );
if( frameBorder() != defaultConfiguration.frameBorder() ) group.writeEntry( OxygenConfig::FRAME_BORDER, frameBorderName( false ) );
if( sizeGripMode() != defaultConfiguration.sizeGripMode() ) group.writeEntry( OxygenConfig::SIZE_GRIP_MODE, sizeGripModeName( false ) );