author | sandman <sandman> | 2002-12-22 17:19:22 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-12-22 17:19:22 (UTC) |
commit | d7859bf6df42c36f87ecaa560754b3b3b3c2e78e (patch) (side-by-side diff) | |
tree | 2419e9402ec70fb1e98a908b165c98b67b5b9e9a | |
parent | 275ce580b85be3b439bbb907efce5036c3282c56 (diff) | |
download | opie-d7859bf6df42c36f87ecaa560754b3b3b3c2e78e.zip opie-d7859bf6df42c36f87ecaa560754b3b3b3c2e78e.tar.gz opie-d7859bf6df42c36f87ecaa560754b3b3b3c2e78e.tar.bz2 |
use the new Config::hasGroup method instead of a custom Config class
-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 @@ -80,20 +80,8 @@ 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 @@ -271,9 +259,9 @@ void OThemeBase::readConfig( Qt::GUIStyle /*style*/ ) 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? |