diff options
Diffstat (limited to 'client/config/deKoratorconfig.h')
-rw-r--r-- | client/config/deKoratorconfig.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/config/deKoratorconfig.h b/client/config/deKoratorconfig.h index 399002f..312026e 100644 --- a/client/config/deKoratorconfig.h +++ b/client/config/deKoratorconfig.h @@ -37,7 +37,7 @@ #include <tqobject.h> -class KConfig; +class TDEConfig; class ConfigDialog; class IconThemesConfig; @@ -45,15 +45,15 @@ class DeKoratorConfig : public TQObject { Q_OBJECT public: - DeKoratorConfig( KConfig* config, TQWidget* parent ); + DeKoratorConfig( TDEConfig* config, TQWidget* parent ); ~DeKoratorConfig(); signals: void changed(); public slots: - void load( KConfig* ); - void save( KConfig* ); + void load( TDEConfig* ); + void save( TDEConfig* ); void defaults(); @@ -64,7 +64,7 @@ protected slots: void removeSelectedTheme(); void setTheme(); private: - KConfig *config_; + TDEConfig *config_; IconThemesConfig *themes_; ConfigDialog *dialog_; }; |