summaryrefslogtreecommitdiffstats
path: root/tdeprint/kxmlcommand.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 /tdeprint/kxmlcommand.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 'tdeprint/kxmlcommand.cpp')
-rw-r--r--tdeprint/kxmlcommand.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeprint/kxmlcommand.cpp b/tdeprint/kxmlcommand.cpp
index d9f3fc456..8dd15f9bd 100644
--- a/tdeprint/kxmlcommand.cpp
+++ b/tdeprint/kxmlcommand.cpp
@@ -31,7 +31,7 @@
#include <tqvaluelist.h>
#include <tdestandarddirs.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kdialogbase.h>
#include <kdebug.h>
#include <tdeprocess.h>
@@ -218,7 +218,7 @@ void KXmlCommand::check(bool use_xml)
void KXmlCommand::loadDesktop()
{
- KSimpleConfig conf(locate("data", "tdeprint/filters/"+name()+".desktop"));
+ TDESimpleConfig conf(locate("data", "tdeprint/filters/"+name()+".desktop"));
conf.setGroup("TDE Print Filter Entry");
d->m_description = conf.readEntry("Comment");
d->m_outputMime = conf.readEntry("MimeTypeOut");
@@ -229,7 +229,7 @@ void KXmlCommand::loadDesktop()
void KXmlCommand::saveDesktop()
{
- KSimpleConfig conf(locateLocal("data", "tdeprint/filters/"+name()+".desktop"));
+ TDESimpleConfig conf(locateLocal("data", "tdeprint/filters/"+name()+".desktop"));
conf.setGroup("TDE Print Filter Entry");
conf.writeEntry("Comment", d->m_description);
conf.writeEntry("MimeTypeIn", d->m_inputMime);