diff options
Diffstat (limited to 'buildtools/ant/antprojectpart.cpp')
-rw-r--r-- | buildtools/ant/antprojectpart.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/buildtools/ant/antprojectpart.cpp b/buildtools/ant/antprojectpart.cpp index 902055ec..fcbdd630 100644 --- a/buildtools/ant/antprojectpart.cpp +++ b/buildtools/ant/antprojectpart.cpp @@ -11,7 +11,7 @@ #include <tqdir.h> -#include <kdevgenericfactory.h> +#include <tdevgenericfactory.h> #include <kdebug.h> #include <tdeaction.h> #include <tdepopupmenu.h> @@ -21,10 +21,10 @@ #include <keditlistbox.h> #include <kurlrequester.h> -#include <kdevplugininfo.h> +#include <tdevplugininfo.h> -#include <kdevcore.h> -#include <kdevmakefrontend.h> +#include <tdevcore.h> +#include <tdevmakefrontend.h> #include <urlutil.h> @@ -34,9 +34,9 @@ -typedef KDevGenericFactory<AntProjectPart> AntProjectFactory; -static const KDevPluginInfo data("kdevantproject"); -K_EXPORT_COMPONENT_FACTORY(libkdevantproject, AntProjectFactory( data )) +typedef TDevGenericFactory<AntProjectPart> AntProjectFactory; +static const TDevPluginInfo data("tdevantproject"); +K_EXPORT_COMPONENT_FACTORY(libtdevantproject, AntProjectFactory( data )) AntOptions::AntOptions() @@ -46,11 +46,11 @@ AntOptions::AntOptions() AntProjectPart::AntProjectPart(TQObject *parent, const char *name, const TQStringList &) - : KDevBuildTool(&data, parent, name ? name : "AntProjectPart") + : TDevBuildTool(&data, parent, name ? name : "AntProjectPart") { setInstance(AntProjectFactory::instance()); - setXMLFile("kdevantproject.rc"); + setXMLFile("tdevantproject.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(); - KDevProject::openProject( dirName, projectName ); + TDevProject::openProject( dirName, projectName ); } |