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 5be07acb..01cd950c 100644
--- a/languages/php/phpconfigwidget.cpp
+++ b/languages/php/phpconfigwidget.cpp
@@ -129,16 +129,16 @@ void PHPConfigWidget::slotAboutClicked()
proc << exe_edit->text();
proc << "-m";
- connect( &proc, TQT_SIGNAL(receivedStdout (KProcess*, char*, int)),
- this, TQT_SLOT(slotReceivedPHPInfo (KProcess*, char*, int)));
- proc.start(KProcess::Block,KProcess::Stdout);
+ connect( &proc, TQT_SIGNAL(receivedStdout (TDEProcess*, char*, int)),
+ this, TQT_SLOT(slotReceivedPHPInfo (TDEProcess*, char*, int)));
+ proc.start(TDEProcess::Block,TDEProcess::Stdout);
PHPInfoDlg dlg(this,"phpinfo",true);
dlg.php_edit->setText(m_phpInfo);
dlg.exec();
m_phpInfo = "";
}
-void PHPConfigWidget::slotReceivedPHPInfo (KProcess* /*proc*/, char* buffer, int buflen){
+void PHPConfigWidget::slotReceivedPHPInfo (TDEProcess* /*proc*/, char* buffer, int buflen){
m_phpInfo += TQCString(buffer,buflen+1);
}