summaryrefslogtreecommitdiffstats
path: root/kview
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:48:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:48:54 +0900
commit1a3ed140599b646687a457af55a0f50e785287a9 (patch)
tree4d5773c3f27a6565694b2ae1f60d74648c067290 /kview
parentf18e2e477390806a5ecca243605d475de72600c9 (diff)
downloadtdegraphics-1a3ed140599b646687a457af55a0f50e785287a9.tar.gz
tdegraphics-1a3ed140599b646687a457af55a0f50e785287a9.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kview')
-rw-r--r--kview/config/plugins/kviewpluginsconfig.cpp4
-rw-r--r--kview/kviewcanvas/config/confmodules.cpp2
-rw-r--r--kview/kviewviewer/config/kviewviewerpluginsconfig.cpp4
-rw-r--r--kview/photobook/photobook.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/kview/config/plugins/kviewpluginsconfig.cpp b/kview/config/plugins/kviewpluginsconfig.cpp
index 73d36b77..248572de 100644
--- a/kview/config/plugins/kviewpluginsconfig.cpp
+++ b/kview/config/plugins/kviewpluginsconfig.cpp
@@ -22,7 +22,7 @@
#include <kgenericfactory.h>
#include <tdelocale.h>
#include <tdeglobal.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kplugininfo.h>
typedef KGenericFactory<KViewPluginsConfig, TQWidget> KViewPluginsConfigFactory;
@@ -31,7 +31,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_kviewpluginsconfig, KViewPluginsConfigFactory( "
KViewPluginsConfig::KViewPluginsConfig( TQWidget * parent, const char *, const TQStringList & args )
: KSettings::PluginPage( KViewPluginsConfigFactory::instance(), parent, args )
{
- m_config = new KSimpleConfig( "kviewrc" );
+ m_config = new TDESimpleConfig( "kviewrc" );
pluginSelector()->addPlugins( TQString::fromAscii( "kview" ), i18n( "Application" ), TQString(), m_config );
pluginSelector()->setShowEmptyConfigPage( false );
}
diff --git a/kview/kviewcanvas/config/confmodules.cpp b/kview/kviewcanvas/config/confmodules.cpp
index d9cf9669..90f443d3 100644
--- a/kview/kviewcanvas/config/confmodules.cpp
+++ b/kview/kviewcanvas/config/confmodules.cpp
@@ -25,7 +25,7 @@
#include <tqframe.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kcolorbutton.h>
#include <tdelistview.h>
#include <knuminput.h>
diff --git a/kview/kviewviewer/config/kviewviewerpluginsconfig.cpp b/kview/kviewviewer/config/kviewviewerpluginsconfig.cpp
index d6d9a2d6..b4693ba0 100644
--- a/kview/kviewviewer/config/kviewviewerpluginsconfig.cpp
+++ b/kview/kviewviewer/config/kviewviewerpluginsconfig.cpp
@@ -22,7 +22,7 @@
#include <kgenericfactory.h>
#include <tdelocale.h>
#include <tdeglobal.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kplugininfo.h>
#include <tqstring.h>
@@ -33,7 +33,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_kviewviewerpluginsconfig, KViewViewerPluginsConf
KViewViewerPluginsConfig::KViewViewerPluginsConfig( TQWidget * parent, const char *, const TQStringList & args )
: KSettings::PluginPage( KViewViewerPluginsConfigFactory::instance(), parent, args )
{
- m_config = new KSimpleConfig( "kviewviewerrc" );
+ m_config = new TDESimpleConfig( "kviewviewerrc" );
pluginSelector()->addPlugins( TQString::fromAscii( "kviewviewer" ), i18n( "Viewer" ), TQString(), m_config );
pluginSelector()->setShowEmptyConfigPage( false );
}
diff --git a/kview/photobook/photobook.cpp b/kview/photobook/photobook.cpp
index 55903d3c..bde4e8a8 100644
--- a/kview/photobook/photobook.cpp
+++ b/kview/photobook/photobook.cpp
@@ -172,7 +172,7 @@ PhotoBook::PhotoBook(TQWidget *parent, PhotoBookPart *part, const char *name)
// is this the correct way to get the supported mimetypes?
if (mViewer)
{
- KSimpleConfig e(locate("services", service->desktopEntryPath()));
+ TDESimpleConfig e(locate("services", service->desktopEntryPath()));
e.setGroup("Desktop Entry");
mimetypes = TQStringList::split(';', e.readEntry("MimeType"));
break;