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 /tdeparts/plugin.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 'tdeparts/plugin.cpp')
-rw-r--r-- | tdeparts/plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeparts/plugin.cpp b/tdeparts/plugin.cpp index 5225de500..ba3d6a663 100644 --- a/tdeparts/plugin.cpp +++ b/tdeparts/plugin.cpp @@ -36,7 +36,7 @@ #include <kxmlguifactory.h> #include <tdelocale.h> #include <tdeconfig.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> using namespace KParts; @@ -256,7 +256,7 @@ void Plugin::loadPlugins( TQObject *parent, KXMLGUIClient* parentGUIClient, TDEI if( !desktopfile.isEmpty() ) { //kdDebug(1000) << "loadPlugins found desktop file for " << name << ": " << desktopfile << endl; - KSimpleConfig desktop( desktopfile, true ); + TDESimpleConfig desktop( desktopfile, true ); desktop.setDesktopGroup(); pluginEnabled = desktop.readBoolEntry( "X-TDE-PluginInfo-EnabledByDefault", enableNewPluginsByDefault ); |