summaryrefslogtreecommitdiffstats
path: root/buildtools/ant/antprojectpart.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-05-25 15:37:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-05-25 15:37:31 +0900
commit6392f5a9dfce2bf83617d49bb7f332181ec6004e (patch)
treeab69e390f7962b7e7dda1a3a64f035c61c751cf4 /buildtools/ant/antprojectpart.cpp
parentaba2788b428dc53243407902e9ccbb20b97a69fd (diff)
downloadtdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.tar.gz
tdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.zip
Revert "Finish renaming tdevelop components"
This reverts commit 722ce1efbac31c61b1d4b13f7e075c9f311e3e73.
Diffstat (limited to 'buildtools/ant/antprojectpart.cpp')
-rw-r--r--buildtools/ant/antprojectpart.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/buildtools/ant/antprojectpart.cpp b/buildtools/ant/antprojectpart.cpp
index fcbdd630..902055ec 100644
--- a/buildtools/ant/antprojectpart.cpp
+++ b/buildtools/ant/antprojectpart.cpp
@@ -11,7 +11,7 @@
#include <tqdir.h>
-#include <tdevgenericfactory.h>
+#include <kdevgenericfactory.h>
#include <kdebug.h>
#include <tdeaction.h>
#include <tdepopupmenu.h>
@@ -21,10 +21,10 @@
#include <keditlistbox.h>
#include <kurlrequester.h>
-#include <tdevplugininfo.h>
+#include <kdevplugininfo.h>
-#include <tdevcore.h>
-#include <tdevmakefrontend.h>
+#include <kdevcore.h>
+#include <kdevmakefrontend.h>
#include <urlutil.h>
@@ -34,9 +34,9 @@
-typedef TDevGenericFactory<AntProjectPart> AntProjectFactory;
-static const TDevPluginInfo data("tdevantproject");
-K_EXPORT_COMPONENT_FACTORY(libtdevantproject, AntProjectFactory( data ))
+typedef KDevGenericFactory<AntProjectPart> AntProjectFactory;
+static const KDevPluginInfo data("kdevantproject");
+K_EXPORT_COMPONENT_FACTORY(libkdevantproject, AntProjectFactory( data ))
AntOptions::AntOptions()
@@ -46,11 +46,11 @@ AntOptions::AntOptions()
AntProjectPart::AntProjectPart(TQObject *parent, const char *name, const TQStringList &)
- : TDevBuildTool(&data, parent, name ? name : "AntProjectPart")
+ : KDevBuildTool(&data, parent, name ? name : "AntProjectPart")
{
setInstance(AntProjectFactory::instance());
- setXMLFile("tdevantproject.rc");
+ setXMLFile("kdevantproject.rc");
m_buildProjectAction = new TDEAction(i18n("&Build Project"), "make_tdevelop", Key_F8,
this, TQT_SLOT(slotBuild()),
@@ -111,7 +111,7 @@ void AntProjectPart::openProject(const TQString &dirName, const TQString &projec
else
populateProject();
- TDevProject::openProject( dirName, projectName );
+ KDevProject::openProject( dirName, projectName );
}