diff options
Diffstat (limited to 'keduca/keducabuilder/kcontrolheader.cpp')
-rw-r--r-- | keduca/keducabuilder/kcontrolheader.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/keduca/keducabuilder/kcontrolheader.cpp b/keduca/keducabuilder/kcontrolheader.cpp index bcd1eaa0..ee9b6e35 100644 --- a/keduca/keducabuilder/kcontrolheader.cpp +++ b/keduca/keducabuilder/kcontrolheader.cpp @@ -226,7 +226,7 @@ void KControlHeader::insertHeader() TQStringList tmpResult = _defaultCategories.grep( _headerCategory->currentText() ); if( tmpResult.count() == 0 ) { - KConfig *appconfig = TDEGlobal::config(); + TDEConfig *appconfig = TDEGlobal::config(); _defaultCategories.append( _headerCategory->currentText() ); appconfig->setGroup("General"); appconfig->writeEntry( "Categories", _defaultCategories); @@ -306,8 +306,8 @@ void KControlHeader::slotOk() /** Read settings */ void KControlHeader::configRead() { - KConfig *config = new KConfig("emaildefaults"); - KConfig *appconfig = TDEGlobal::config(); + TDEConfig *config = new TDEConfig("emaildefaults"); + TDEConfig *appconfig = TDEGlobal::config(); config->setGroup("UserInfo"); @@ -369,7 +369,7 @@ void KControlHeader::configRead() /** Write settings */ void KControlHeader::configWrite() { - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("kcontrolheader"); config->writeEntry("Geometry", size() ); config->sync(); |