summaryrefslogtreecommitdiffstats
path: root/keduca/keducabuilder/kcontrolheader.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:48:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:48:33 +0900
commitba6e024f354cb790c9baa63299041e236884e222 (patch)
tree002487288ca3b98bdfea10155f0285b5a4f45385 /keduca/keducabuilder/kcontrolheader.cpp
parent35149ce0bd6a7e9a315a395291ed4b59499b63cf (diff)
downloadtdeedu-ba6e024f354cb790c9baa63299041e236884e222.tar.gz
tdeedu-ba6e024f354cb790c9baa63299041e236884e222.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'keduca/keducabuilder/kcontrolheader.cpp')
-rw-r--r--keduca/keducabuilder/kcontrolheader.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/keduca/keducabuilder/kcontrolheader.cpp b/keduca/keducabuilder/kcontrolheader.cpp
index d64d7f87..5d74b399 100644
--- a/keduca/keducabuilder/kcontrolheader.cpp
+++ b/keduca/keducabuilder/kcontrolheader.cpp
@@ -20,7 +20,7 @@
#include <tdelocale.h>
#include <tdestandarddirs.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <klineedit.h>
#include <kcombobox.h>
@@ -267,7 +267,7 @@ void KControlHeader::loadCountryList(KLanguageCombo *combo)
index = tag.findRev('.');
if (index != -1) tag.truncate(index);
- KSimpleConfig entry(*it);
+ TDESimpleConfig entry(*it);
entry.setGroup(TQString::fromLatin1("KCM Locale"));
TQString name = entry.readEntry(TQString::fromLatin1("Name"));
@@ -281,7 +281,7 @@ void KControlHeader::loadCountryList(KLanguageCombo *combo)
for ( TQStringList::ConstIterator it = countrylist.begin();
it != countrylist.end(); ++it )
{
- KSimpleConfig entry(*it);
+ TDESimpleConfig entry(*it);
entry.setGroup(TQString::fromLatin1("KCM Locale"));
TQString name = entry.readEntry(TQString::fromLatin1("Name"));
TQString submenu = '-' + entry.readEntry(TQString::fromLatin1("Region"));