diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-03-02 20:05:33 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-03-02 20:05:33 +0100 |
commit | 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch) | |
tree | db1b6b28566e5fe9accb4a688f7257673cecb080 /buildtools/ant/antprojectpart.cpp | |
parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip |
Finish renaming tdevelop components
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 ); } |