diff options
Diffstat (limited to 'tdeprint/kxmlcommand.cpp')
-rw-r--r-- | tdeprint/kxmlcommand.cpp | 6 |
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); |