diff options
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" |