summaryrefslogtreecommitdiffstats
path: root/tdestyles/utils/installtheme/main.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 /tdestyles/utils/installtheme/main.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 'tdestyles/utils/installtheme/main.cpp')
-rw-r--r--tdestyles/utils/installtheme/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdestyles/utils/installtheme/main.cpp b/tdestyles/utils/installtheme/main.cpp
index aa81b7254..a58a55daf 100644
--- a/tdestyles/utils/installtheme/main.cpp
+++ b/tdestyles/utils/installtheme/main.cpp
@@ -29,7 +29,7 @@
#include <tdecmdlineargs.h>
#include <tdeglobal.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
static const char desc[] = I18N_NOOP("TDE Tool to build a cache list of all pixmap themes installed");
@@ -48,7 +48,7 @@ int main(int argc, char **argv)
for (TQStringList::iterator i = themercs.begin(); i!=themercs.end(); ++i)
{
TQString file=*i;
- KSimpleConfig config(file, true);
+ TDESimpleConfig config(file, true);
TQString name = TQFileInfo(file).baseName(); //This is nice and static...
//So we don't have to worry about our key changing when the language does.
@@ -62,7 +62,7 @@ int main(int argc, char **argv)
}
}
- KSimpleConfig cache( TDEGlobal::dirs()->saveLocation("config")+"kthemestylerc");
+ TDESimpleConfig cache( TDEGlobal::dirs()->saveLocation("config")+"kthemestylerc");
#if 0
//Doesn't seem to work with present Qt..