From 78114a50964bc7bb5d7d99f713bb815ed5a623ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Tue, 8 Oct 2013 00:16:56 +0200 Subject: Initial TDE conversion --- src/project.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/project.cpp') diff --git a/src/project.cpp b/src/project.cpp index 9e72648..2938778 100644 --- a/src/project.cpp +++ b/src/project.cpp @@ -28,8 +28,8 @@ #include #include #include -#include -#include +#include +#include #include "project.h" #include "kscopeconfig.h" #include "cscopefrontend.h" @@ -103,7 +103,7 @@ bool Project::open(const TQString& sPath) m_fiFileList.setName(sPath + "/cscope.files"); // Open the configuration files - m_pConf = new KConfig(sPath + "/cscope.proj"); + m_pConf = new TDEConfig(sPath + "/cscope.proj"); // Verify the configuration file's version is compatible m_pConf->setGroup(""); @@ -402,7 +402,7 @@ bool Project::create(const TQString& sName, const TQString& sPath, const Options& opt) { // Prepare the project's files - KConfig conf(sPath + "/cscope.proj"); + TDEConfig conf(sPath + "/cscope.proj"); // Write the configuration file version conf.setGroup(""); @@ -420,7 +420,7 @@ bool Project::create(const TQString& sName, const TQString& sPath, return true; } -void Project::writeOptions(KConfig* pConf, const Options& opt) +void Project::writeOptions(TDEConfig* pConf, const Options& opt) { pConf->setGroup("Project"); pConf->writeEntry("RootPath", opt.sSrcRootPath); -- cgit v1.2.1