summaryrefslogtreecommitdiffstats
path: root/tdehtml/tdehtmlview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-11 14:14:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 17:55:25 +0900
commit1e1cb981d39c663091ce0089f3ed66b5db2238da (patch)
tree7ecbebcd7bcb70770dc4613424acbe17b034b01f /tdehtml/tdehtmlview.cpp
parent2e76346c68e5c1db6b6058014c024bb70fec5e34 (diff)
downloadtdelibs-1e1cb981d39c663091ce0089f3ed66b5db2238da.tar.gz
tdelibs-1e1cb981d39c663091ce0089f3ed66b5db2238da.zip
Rename ksimpleconfig.{h,cpp} to tdesimpleconfig.{h.cpp}.
Add temporary ksimpleconfig.h to keep things building. This is a change of API/ABI. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdehtml/tdehtmlview.cpp')
-rw-r--r--tdehtml/tdehtmlview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tdehtml/tdehtmlview.cpp b/tdehtml/tdehtmlview.cpp
index a351a5f74..d9f5e69a7 100644
--- a/tdehtml/tdehtmlview.cpp
+++ b/tdehtml/tdehtmlview.cpp
@@ -70,7 +70,7 @@
#include <tdelocale.h>
#include <knotifyclient.h>
#include <kprinter.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <tdestdaccel.h>
#include <kstringhandler.h>
@@ -347,7 +347,7 @@ public:
bool ignoreWheelEvents:1;
int borderX, borderY;
- KSimpleConfig *formCompletions;
+ TDESimpleConfig *formCompletions;
bool paged;
@@ -3047,7 +3047,7 @@ TQStringList TDEHTMLView::formCompletionItems(const TQString &name) const
if (!m_part->settings()->isFormCompletionEnabled())
return TQStringList();
if (!d->formCompletions)
- d->formCompletions = new KSimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
+ d->formCompletions = new TDESimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
return d->formCompletions->readListEntry(name);
}
@@ -3055,7 +3055,7 @@ void TDEHTMLView::clearCompletionHistory(const TQString& name)
{
if (!d->formCompletions)
{
- d->formCompletions = new KSimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
+ d->formCompletions = new TDESimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
}
d->formCompletions->writeEntry(name, "");
d->formCompletions->sync();
@@ -3101,7 +3101,7 @@ void TDEHTMLView::removeFormCompletionItem(const TQString &name, const TQString
void TDEHTMLView::addNonPasswordStorableSite(const TQString& host)
{
if (!d->formCompletions) {
- d->formCompletions = new KSimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
+ d->formCompletions = new TDESimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
}
d->formCompletions->setGroup("NonPasswordStorableSites");
@@ -3115,7 +3115,7 @@ void TDEHTMLView::addNonPasswordStorableSite(const TQString& host)
bool TDEHTMLView::nonPasswordStorableSite(const TQString& host) const
{
if (!d->formCompletions) {
- d->formCompletions = new KSimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
+ d->formCompletions = new TDESimpleConfig(locateLocal("data", "tdehtml/formcompletions"));
}
d->formCompletions->setGroup("NonPasswordStorableSites");
TQStringList sites = d->formCompletions->readListEntry("Sites");