-rw-r--r-- | noncore/styles/theme/othemebase.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/noncore/styles/theme/othemebase.cpp b/noncore/styles/theme/othemebase.cpp index acac847..62b3a11 100644 --- a/noncore/styles/theme/othemebase.cpp +++ b/noncore/styles/theme/othemebase.cpp @@ -78,24 +78,12 @@ unsigned int mask : union kthemeKey{ kthemeKeyData data; unsigned int cacheKey; }; -class MyConfig : public Config -{ -public: - MyConfig ( const QString &f, Domain d ) : Config ( f, d ) - { } - - bool hasGroup ( const QString &gname ) const - { - QMap< QString, ConfigGroup>::ConstIterator it = groups. find ( gname ); - return ( it != groups.end() ); - } -}; void OThemeBase::generateBorderPix( int i ) { // separate pixmap into separate components if ( pbPixmaps[ i ] ) { // evidently I have to do masks manually... @@ -269,13 +257,13 @@ void OThemeBase::readConfig( Qt::GUIStyle /*style*/ ) if ( configFileName.isEmpty() ) { Config cfg ( "qpe" ); cfg. setGroup ( "Appearance" ); configFileName = cfg. readEntry ( "Theme", "default" ); } - MyConfig config( configFilePath + "/themes/" + configFileName + ".themerc" , Config::File ); + Config config( configFilePath + "/themes/" + configFileName + ".themerc" , Config::File ); // printf ( "Opened config file: %s\n", ( configFilePath + "/themes/" + configFileName + ".themerc" ). ascii()); // Are we initalized? applyMiscResourceGroup( &config ); for ( i = 0; i < INHERIT_ITEMS; ++i ) { |