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 /languages/pascal/pascalsupport_part.cpp | |
parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip |
Finish renaming tdevelop components
Diffstat (limited to 'languages/pascal/pascalsupport_part.cpp')
-rw-r--r-- | languages/pascal/pascalsupport_part.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/languages/pascal/pascalsupport_part.cpp b/languages/pascal/pascalsupport_part.cpp index 69cbebf8..3b9d8263 100644 --- a/languages/pascal/pascalsupport_part.cpp +++ b/languages/pascal/pascalsupport_part.cpp @@ -15,7 +15,7 @@ #include <kiconloader.h> #include <tdelocale.h> -#include <kdevgenericfactory.h> +#include <tdevgenericfactory.h> #include <kdebug.h> #include <tdeapplication.h> #include <kstatusbar.h> @@ -23,11 +23,11 @@ #include <antlr/ASTFactory.hpp> #include "catalog.h" -#include <kdevcore.h> -#include <kdevmainwindow.h> -#include <kdevpartcontroller.h> -#include <kdevproject.h> -#include <kdevplugininfo.h> +#include <tdevcore.h> +#include <tdevmainwindow.h> +#include <tdevpartcontroller.h> +#include <tdevproject.h> +#include <tdevplugininfo.h> #include "pascalsupport_part.h" #include "problemreporter.h" @@ -43,16 +43,16 @@ struct PascalSupportPartData{ {} }; -typedef KDevGenericFactory<PascalSupportPart> PascalSupportFactory; -static const KDevPluginInfo data("kdevpascalsupport"); -K_EXPORT_COMPONENT_FACTORY( libkdevpascalsupport, PascalSupportFactory( data ) ) +typedef TDevGenericFactory<PascalSupportPart> PascalSupportFactory; +static const TDevPluginInfo data("tdevpascalsupport"); +K_EXPORT_COMPONENT_FACTORY( libtdevpascalsupport, PascalSupportFactory( data ) ) PascalSupportPart::PascalSupportPart(TQObject *parent, const char *name, const TQStringList &) - : KDevLanguageSupport(&data, parent, name ? name : "KDevPascalSupport" ), + : TDevLanguageSupport(&data, parent, name ? name : "KDevPascalSupport" ), d( new PascalSupportPartData() ) { setInstance(PascalSupportFactory::instance()); - setXMLFile("kdevpascalsupport.rc"); + setXMLFile("tdevpascalsupport.rc"); d->problemReporter = new ProblemReporter( this ); connect( core(), TQT_SIGNAL(configWidget(KDialogBase*)), @@ -317,7 +317,7 @@ TQString PascalSupportPart::formatModelItem( const CodeModelItem * item, bool sh return arg.stripWhiteSpace(); } else - return KDevLanguageSupport::formatModelItem( item, shortDescription ); + return TDevLanguageSupport::formatModelItem( item, shortDescription ); } #include "pascalsupport_part.moc" |