summaryrefslogtreecommitdiffstats
path: root/parts
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:58:26 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:58:26 +0900
commitd3bade8785f79f166c319514eadfe8e8f11a726c (patch)
tree55109a13c861f60fd11dc147449cee690fafe1c6 /parts
parent5198c9d3ac02aa9c7949f49e3cf374f683facb18 (diff)
downloadtdevelop-d3bade8785f79f166c319514eadfe8e8f11a726c.tar.gz
tdevelop-d3bade8785f79f166c319514eadfe8e8f11a726c.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'parts')
-rw-r--r--parts/appwizard/importdlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/appwizard/importdlg.cpp b/parts/appwizard/importdlg.cpp
index 279eb904..297d802c 100644
--- a/parts/appwizard/importdlg.cpp
+++ b/parts/appwizard/importdlg.cpp
@@ -332,7 +332,7 @@ void ImportDialog::scanLegacyKDevelopProject(const TQString &fileName)
{
kdDebug(9010) << "Scanning legacy KDevelop project file " << fileName << endl;
- KSimpleConfig config(fileName, true);
+ TDESimpleConfig config(fileName, true);
config.setGroup("General");
author_edit->setText(config.readEntry("author"));
email_edit->setText(config.readEntry("email"));
@@ -355,7 +355,7 @@ void ImportDialog::scanLegacyStudioProject(const TQString &fileName)
kdDebug(9010) << "Scanning legacy studio project file " << fileName << endl;
// Not much to do here...
- KSimpleConfig config(fileName, true);
+ TDESimpleConfig config(fileName, true);
config.setGroup("kdestudio");
name_edit->setText(config.readEntry("Name"));
}