summaryrefslogtreecommitdiffstats
path: root/languages/php
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:29:56 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:29:56 -0600
commit82fc754f7c4e43eace608a45c22e74e532bd33f1 (patch)
tree7e1217a13d974e19f4e03cd914de2a217e832f21 /languages/php
parent8d6fecdf83984625b9bc6d010a6a00ee670af344 (diff)
downloadtdevelop-82fc754f7c4e43eace608a45c22e74e532bd33f1.tar.gz
tdevelop-82fc754f7c4e43eace608a45c22e74e532bd33f1.zip
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'languages/php')
-rw-r--r--languages/php/phpcodecompletion.cpp2
-rw-r--r--languages/php/phpconfigdata.cpp2
-rw-r--r--languages/php/phpconfigwidget.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/languages/php/phpcodecompletion.cpp b/languages/php/phpcodecompletion.cpp
index 6f42f411..eec46473 100644
--- a/languages/php/phpcodecompletion.cpp
+++ b/languages/php/phpcodecompletion.cpp
@@ -51,7 +51,7 @@ PHPCodeCompletion::~PHPCodeCompletion(){
}
void PHPCodeCompletion::readGlobalPHPFunctionsFile(){
- KStandardDirs *dirs = PHPSupportFactory::instance()->dirs();
+ TDEStandardDirs *dirs = PHPSupportFactory::instance()->dirs();
TQString phpFuncFile = dirs->findResource("data","kdevphpsupport/phpfunctions");
TQRegExp lineReg(":([0-9A-Za-z_]+) ([0-9A-Za-z_]+)\\((.*)\\)");
FunctionCompletionEntry e;
diff --git a/languages/php/phpconfigdata.cpp b/languages/php/phpconfigdata.cpp
index b710f264..51ab5982 100644
--- a/languages/php/phpconfigdata.cpp
+++ b/languages/php/phpconfigdata.cpp
@@ -23,7 +23,7 @@
#include <iostream>
PHPConfigData::PHPConfigData(TQDomDocument* dom) {
- TQString file = KStandardDirs::findExe("php");
+ TQString file = TDEStandardDirs::findExe("php");
if (file.isEmpty())
file = "/usr/local/bin/php";
diff --git a/languages/php/phpconfigwidget.cpp b/languages/php/phpconfigwidget.cpp
index 27ef1baf..6cddabdf 100644
--- a/languages/php/phpconfigwidget.cpp
+++ b/languages/php/phpconfigwidget.cpp
@@ -42,7 +42,7 @@ PHPConfigWidget::PHPConfigWidget(PHPConfigData* data,TQWidget* parent, const ch
// page shell
TQString exepath = configData->getPHPExecPath();
if (exepath.isEmpty()) {
- TQString fiexepath = KStandardDirs::findExe("php");
+ TQString fiexepath = TDEStandardDirs::findExe("php");
if (exepath.isEmpty())
exepath = "/usr/local/bin/php";