diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-11 14:14:04 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 17:55:25 +0900 |
| commit | 1e1cb981d39c663091ce0089f3ed66b5db2238da (patch) | |
| tree | 7ecbebcd7bcb70770dc4613424acbe17b034b01f /tdehtml/tdehtmlview.cpp | |
| parent | 2e76346c68e5c1db6b6058014c024bb70fec5e34 (diff) | |
| download | tdelibs-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.cpp | 12 |
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"); |
