summaryrefslogtreecommitdiffstats
path: root/client/config/deKoratorconfig.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/config/deKoratorconfig.cc')
-rw-r--r--client/config/deKoratorconfig.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/client/config/deKoratorconfig.cc b/client/config/deKoratorconfig.cc
index cae4fa9..8373530 100644
--- a/client/config/deKoratorconfig.cc
+++ b/client/config/deKoratorconfig.cc
@@ -31,9 +31,9 @@
// Boston, MA 02110-1301, USA.
///////////////////////////////////////////////////////////////////////
-#include <kconfig.h>
-#include <klocale.h>
-#include <kglobal.h>
+#include <tdeconfig.h>
+#include <tdelocale.h>
+#include <tdeglobal.h>
#include <tqbuttongroup.h>
#include <tqgroupbox.h>
#include <tqradiobutton.h>
@@ -43,7 +43,7 @@
#include <tqspinbox.h>
#include <tqcheckbox.h>
#include <kcolorbutton.h>
-#include <klistview.h>
+#include <tdelistview.h>
#include "deKoratorconfig.h"
#include "configdialog.h"
@@ -56,12 +56,12 @@
// -------------
// Constructor
-DeKoratorConfig::DeKoratorConfig( KConfig* config, TQWidget* parent )
+DeKoratorConfig::DeKoratorConfig( TDEConfig* config, TQWidget* parent )
: TQObject( parent ), config_( 0 ), dialog_( 0 )
{
// create the configuration object
- config_ = new KConfig( "kwindeKoratorrc" );
- KGlobal::locale() ->insertCatalogue( "kwin_deKorator_config" );
+ config_ = new TDEConfig( "twindeKoratorrc" );
+ TDEGlobal::locale() ->insertCatalogue( "twin_deKorator_config" );
@@ -181,7 +181,7 @@ void DeKoratorConfig::selectionChanged( int )
// ------
// Load configuration data
-void DeKoratorConfig::load( KConfig* )
+void DeKoratorConfig::load( TDEConfig* )
{
// misc
config_->setGroup( "MISC" );
@@ -262,7 +262,7 @@ void DeKoratorConfig::load( KConfig* )
// ------
// Save configuration data
-void DeKoratorConfig::save( KConfig* )
+void DeKoratorConfig::save( TDEConfig* )
{
// misc
config_->setGroup( "MISC" );
@@ -455,7 +455,7 @@ void DeKoratorConfig::setTheme()
extern "C"
{
- TQObject * allocate_config( KConfig * config, TQWidget * parent )
+ TQObject * allocate_config( TDEConfig * config, TQWidget * parent )
{
return ( new DeKoratorConfig( config, parent ) );
}