summaryrefslogtreecommitdiffstats
path: root/languages/php/phpsupportpart.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-03-02 20:05:33 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-03-02 20:05:33 +0100
commit722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch)
treedb1b6b28566e5fe9accb4a688f7257673cecb080 /languages/php/phpsupportpart.cpp
parentafb74575caf7dd8ccb6c235b1c8d788e320c19da (diff)
downloadtdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz
tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip
Finish renaming tdevelop components
Diffstat (limited to 'languages/php/phpsupportpart.cpp')
-rw-r--r--languages/php/phpsupportpart.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/languages/php/phpsupportpart.cpp b/languages/php/phpsupportpart.cpp
index 4f764f1f..f5c484a9 100644
--- a/languages/php/phpsupportpart.cpp
+++ b/languages/php/phpsupportpart.cpp
@@ -43,13 +43,13 @@
#include <kstatusbar.h>
#include <tdeparts/browserextension.h>
-#include <kdevcore.h>
-#include <kdevproject.h>
-#include <kdevmainwindow.h>
-#include <kdevpartcontroller.h>
+#include <tdevcore.h>
+#include <tdevproject.h>
+#include <tdevmainwindow.h>
+#include <tdevpartcontroller.h>
#include <codemodel.h>
#include <domutil.h>
-#include <kdevplugininfo.h>
+#include <tdevplugininfo.h>
#include <kiconloader.h>
#include "phpconfigdata.h"
@@ -66,18 +66,18 @@
using namespace std;
-static const KDevPluginInfo data("kdevphpsupport");
-K_EXPORT_COMPONENT_FACTORY( libkdevphpsupport, PHPSupportFactory( data ) )
+static const TDevPluginInfo data("tdevphpsupport");
+K_EXPORT_COMPONENT_FACTORY( libtdevphpsupport, PHPSupportFactory( data ) )
PHPSupportPart::PHPSupportPart(TQObject *parent, const char *name, const TQStringList &)
- : KDevLanguageSupport(&data, parent, name ? name : "PHPSupportPart")
+ : TDevLanguageSupport(&data, parent, name ? name : "PHPSupportPart")
{
m_htmlView = 0;
m_parser = 0;
phpExeProc = 0;
setInstance(PHPSupportFactory::instance());
- setXMLFile("kdevphpsupport.rc");
+ setXMLFile("tdevphpsupport.rc");
connect( core(), TQT_SIGNAL(projectOpened()), this, TQT_SLOT(projectOpened()) );
connect( core(), TQT_SIGNAL(projectClosed()), this, TQT_SLOT(projectClosed()) );
@@ -545,7 +545,7 @@ TQString PHPSupportPart::getExePath()
return configData->getPHPExecPath();
}
-KDevLanguageSupport::Features PHPSupportPart::features()
+TDevLanguageSupport::Features PHPSupportPart::features()
{
return Features(Classes | Functions);
}