summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kchart/kchartBackgroundPixmapConfigPage.cpp2
-rw-r--r--kexi/3rdparty/kolibs/koGlobal.cpp4
-rw-r--r--kpresenter/KPrWebPresentation.cpp6
-rw-r--r--kpresenter/autoformEdit/AFChoose.cpp6
-rw-r--r--kspread/dialogs/kspread_dlg_format.cpp4
-rw-r--r--lib/kformula/kformuladocument.cpp2
-rw-r--r--lib/kofficecore/KoGlobal.cpp4
-rw-r--r--lib/kofficecore/KoTemplates.cpp8
8 files changed, 18 insertions, 18 deletions
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 <tdeglobalsettings.h>
#include <tdeglobal.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <kstaticdeleter.h>
#include <kimageio.h>
@@ -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 <tdefiledialog.h>
#include <tdemessagebox.h>
#include <kbuttonbox.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdeapplication.h>
#include <kprogress.h>
#include <tdeglobal.h>
@@ -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 <tqwhatsthis.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kdebug.h>
#include <tdestandarddirs.h>
#include <kicondialog.h>
@@ -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; i<files.count(); ++i) {
TQString path=grpPtr->dir.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 <kbuttonbox.h>
#include <tdemessagebox.h>
#include <tdestandarddirs.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#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 <tdeglobal.h>
#include <kiconloader.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <KoDocument.h>
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 <tdeglobalsettings.h>
#include <tdeglobal.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <kstaticdeleter.h>
#include <kimageio.h>
@@ -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 <tqprinter.h>
#include <kdesktopfile.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kdebug.h>
#include <tdeversion.h>
#include <kinstance.h>
@@ -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());