summaryrefslogtreecommitdiffstats
path: root/languages/php/phpconfigwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/php/phpconfigwidget.cpp')
-rw-r--r--languages/php/phpconfigwidget.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/php/phpconfigwidget.cpp b/languages/php/phpconfigwidget.cpp
index 6cddabdf..15006bf9 100644
--- a/languages/php/phpconfigwidget.cpp
+++ b/languages/php/phpconfigwidget.cpp
@@ -1,5 +1,5 @@
#include "domutil.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <klineedit.h>
#include <tqcheckbox.h>
#include <tqmultilineedit.h>
@@ -8,7 +8,7 @@
#include <tqradiobutton.h>
#include <tdefiledialog.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include "phpinfodlg.h"
#include "phpconfigwidget.h"
@@ -129,8 +129,8 @@ void PHPConfigWidget::slotAboutClicked()
proc << exe_edit->text();
proc << "-m";
- connect( &proc, TQT_SIGNAL(receivedStdout (TDEProcess*, char*, int)),
- this, TQT_SLOT(slotReceivedPHPInfo (TDEProcess*, char*, int)));
+ connect( &proc, TQ_SIGNAL(receivedStdout (TDEProcess*, char*, int)),
+ this, TQ_SLOT(slotReceivedPHPInfo (TDEProcess*, char*, int)));
proc.start(TDEProcess::Block,TDEProcess::Stdout);
PHPInfoDlg dlg(this,"phpinfo",true);
dlg.php_edit->setText(m_phpInfo);