summaryrefslogtreecommitdiffstats
path: root/buildtools/ant/antprojectpart.cpp
diff options
context:
space:
mode:
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 );
}