diff --git a/kchart/kchartBackgroundPixmapConfigPage.cpp b/kchart/kchartBackgroundPixmapConfigPage.cpp index 73a81bb28..e4b4e42fe 100644 --- a/kchart/kchartBackgroundPixmapConfigPage.cpp +++ b/kchart/kchartBackgroundPixmapConfigPage.cpp @@ -185,7 +185,7 @@ void KChartBackgroundPixmapConfigPage::loadWallpaperFilesList() TQStringList files; for (TQStringList::ConstIterator it = lst.begin(); it != lst.end(); ++it) { - KSimpleConfig fileConfig(*it); + TDESimpleConfig fileConfig(*it); fileConfig.setGroup("Wallpaper"); TQString imageCaption = fileConfig.readEntry("Name"); diff --git a/kexi/3rdparty/kolibs/koGlobal.cpp b/kexi/3rdparty/kolibs/koGlobal.cpp index 92167f277..eabf9e982 100644 --- a/kexi/3rdparty/kolibs/koGlobal.cpp +++ b/kexi/3rdparty/kolibs/koGlobal.cpp @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include #include @@ -144,7 +144,7 @@ void KoGlobal::createListOfLanguages() tag = tag.mid(index+1); if ( seenLanguages.find( tag ) == seenLanguages.end() ) { - KSimpleConfig entry(*it); + TDESimpleConfig entry(*it); entry.setGroup("KCM Locale"); const TQString name = entry.readEntry("Name", tag); diff --git a/kpresenter/KPrWebPresentation.cpp b/kpresenter/KPrWebPresentation.cpp index 886a47167..d76e208b0 100644 --- a/kpresenter/KPrWebPresentation.cpp +++ b/kpresenter/KPrWebPresentation.cpp @@ -58,7 +58,7 @@ #include #include #include -#include +#include #include #include #include @@ -198,7 +198,7 @@ void KPrWebPresentation::loadConfig() if ( config.isEmpty() ) return; - KSimpleConfig cfg( config ); + TDESimpleConfig cfg( config ); cfg.setGroup( "General" ); author = cfg.readEntry( "Author", author ); @@ -235,7 +235,7 @@ void KPrWebPresentation::loadConfig() void KPrWebPresentation::saveConfig() { - KSimpleConfig cfg( config ); + TDESimpleConfig cfg( config ); cfg.setGroup( "General" ); cfg.writeEntry( "Author", author ); diff --git a/kpresenter/autoformEdit/AFChoose.cpp b/kpresenter/autoformEdit/AFChoose.cpp index 093c13a80..df5867c1d 100644 --- a/kpresenter/autoformEdit/AFChoose.cpp +++ b/kpresenter/autoformEdit/AFChoose.cpp @@ -26,7 +26,7 @@ #include #include -#include +#include #include #include #include @@ -67,7 +67,7 @@ void AFChoose::getGroups() grpPtr->dir.setFile(directory); TQDir d(directory); if(d.exists(".directory")) { - KSimpleConfig config(d.absPath()+"/.directory", true); + TDESimpleConfig config(d.absPath()+"/.directory", true); config.setDesktopGroup(); grpPtr->name=config.readEntry("Name"); } @@ -95,7 +95,7 @@ void AFChoose::setupTabs() for(unsigned int i=0; idir.absFilePath() + TQChar('/'); files[i]=path + files[i]; - KSimpleConfig config(files[i]); + TDESimpleConfig config(files[i]); config.setDesktopGroup(); if (config.readEntry("Type")=="Link") { TQString text=config.readEntry("Name"); diff --git a/kspread/dialogs/kspread_dlg_format.cpp b/kspread/dialogs/kspread_dlg_format.cpp index e6e568075..58f32f25a 100644 --- a/kspread/dialogs/kspread_dlg_format.cpp +++ b/kspread/dialogs/kspread_dlg_format.cpp @@ -32,7 +32,7 @@ #include #include #include -#include +#include #include "kspread_dlg_format.h" #include "kspread_doc.h" @@ -72,7 +72,7 @@ FormatDialog::FormatDialog( View* view, const char* name ) TQStringList::Iterator it = lst.begin(); for( ; it != lst.end(); ++it ) { - KSimpleConfig cfg( *it, true ); + TDESimpleConfig cfg( *it, true ); cfg.setGroup( "Sheet-Style" ); Entry e; diff --git a/lib/kformula/kformuladocument.cpp b/lib/kformula/kformuladocument.cpp index 24d7c6504..4cb52d8f8 100644 --- a/lib/kformula/kformuladocument.cpp +++ b/lib/kformula/kformuladocument.cpp @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include diff --git a/lib/kofficecore/KoGlobal.cpp b/lib/kofficecore/KoGlobal.cpp index 0bc10c3cd..745405522 100644 --- a/lib/kofficecore/KoGlobal.cpp +++ b/lib/kofficecore/KoGlobal.cpp @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include #include @@ -147,7 +147,7 @@ void KoGlobal::createListOfLanguages() tag = tag.mid(index+1); if ( seenLanguages.find( tag ) == seenLanguages.end() ) { - KSimpleConfig entry(*it); + TDESimpleConfig entry(*it); entry.setGroup("KCM Locale"); const TQString name = entry.readEntry("Name", tag); diff --git a/lib/kofficecore/KoTemplates.cpp b/lib/kofficecore/KoTemplates.cpp index 072c04a0b..313d3af4b 100644 --- a/lib/kofficecore/KoTemplates.cpp +++ b/lib/kofficecore/KoTemplates.cpp @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include #include @@ -226,7 +226,7 @@ void KoTemplateTree::readGroups() { TQString defaultTab; int sortingWeight = 1000; if(templateDir.exists(".directory")) { - KSimpleConfig config(templateDir.absPath()+"/.directory", true); + TDESimpleConfig config(templateDir.absPath()+"/.directory", true); config.setDesktopGroup(); name=config.readEntry("Name"); defaultTab=config.readEntry("X-TDE-DefaultTab"); @@ -271,7 +271,7 @@ void KoTemplateTree::readTemplates() { // If a desktop file, then read the name from it. // Otherwise (or if no name in it?) use file name if (KDesktopFile::isDesktopFile(filePath)) { - KSimpleConfig config(filePath, true); + TDESimpleConfig config(filePath, true); config.setDesktopGroup(); if (config.readEntry("Type")=="Link") { text=config.readEntry("Name"); @@ -356,7 +356,7 @@ void KoTemplateTree::writeTemplate(KoTemplate *t, KoTemplateGroup *group, fileName = path + fill + name + ".desktop"; } - KSimpleConfig config( fileName ); + TDESimpleConfig config( fileName ); config.setDesktopGroup(); config.writeEntry("Type", "Link"); config.writePathEntry("URL", t->file());