diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:18:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:22:15 +0900 |
commit | 7bcb62fe6011b03e2a93c06269c207a43864d374 (patch) | |
tree | d92b646937822c717753712723269651a12404ca | |
parent | a3fc822244ed669c7e71ea624429c815b0d6ede2 (diff) | |
download | kpilot-7bcb62fe6011b03e2a93c06269c207a43864d374.tar.gz kpilot-7bcb62fe6011b03e2a93c06269c207a43864d374.zip |
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | conduits/popmail/popmail-conduit.cpp | 4 | ||||
-rw-r--r-- | kpilot/kpilotConfig.cpp | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/conduits/popmail/popmail-conduit.cpp b/conduits/popmail/popmail-conduit.cpp index 5e0f57f..34e5b7b 100644 --- a/conduits/popmail/popmail-conduit.cpp +++ b/conduits/popmail/popmail-conduit.cpp @@ -68,7 +68,7 @@ unsigned long version_conduit_popmail = Pilot::PLUGIN_API; #include <tdemessagebox.h> #include <ksock.h> #include <tdeconfig.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <dcopclient.h> #include <tdetempfile.h> @@ -162,7 +162,7 @@ TQString PopMailConduit::getKMailOutbox() const FUNCTIONSETUP; // Default to "outbox" with newer KMails. - KSimpleConfig c(CSL1("kmailrc"),true); + TDESimpleConfig c(CSL1("kmailrc"),true); c.setGroup("General"); TQString outbox = c.readEntry("outboxFolder"); diff --git a/kpilot/kpilotConfig.cpp b/kpilot/kpilotConfig.cpp index 0ea3826..4800024 100644 --- a/kpilot/kpilotConfig.cpp +++ b/kpilot/kpilotConfig.cpp @@ -37,7 +37,6 @@ #include <tdestandarddirs.h> #include <tdeconfig.h> -#include <ksimpleconfig.h> #include <tdecmdlineargs.h> #include <tdemessagebox.h> #include <tdeglobalsettings.h> |