summaryrefslogtreecommitdiffstats
path: root/parts/filter/shellinsertdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/filter/shellinsertdlg.cpp')
-rw-r--r--parts/filter/shellinsertdlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/parts/filter/shellinsertdlg.cpp b/parts/filter/shellinsertdlg.cpp
index 50217226..d1799663 100644
--- a/parts/filter/shellinsertdlg.cpp
+++ b/parts/filter/shellinsertdlg.cpp
@@ -97,21 +97,21 @@ void ShellInsertDialog::slotStartClicked()
delete m_proc;
m_proc = new KShellProcess("/bin/sh");
(*m_proc) << combo->currentText();
- connect( m_proc, TQT_SIGNAL(receivedStdout(KProcess*, char *, int)),
- this, TQT_SLOT(slotReceivedStdout(KProcess*, char *, int)) );
- connect( m_proc, TQT_SIGNAL(processExited(KProcess*)),
- this, TQT_SLOT(slotProcessExited(KProcess*)) );
- m_proc->start(KProcess::NotifyOnExit, KProcess::AllOutput);
+ connect( m_proc, TQT_SIGNAL(receivedStdout(TDEProcess*, char *, int)),
+ this, TQT_SLOT(slotReceivedStdout(TDEProcess*, char *, int)) );
+ connect( m_proc, TQT_SIGNAL(processExited(TDEProcess*)),
+ this, TQT_SLOT(slotProcessExited(TDEProcess*)) );
+ m_proc->start(TDEProcess::NotifyOnExit, TDEProcess::AllOutput);
}
-void ShellInsertDialog::slotReceivedStdout(KProcess *, char *text, int len)
+void ShellInsertDialog::slotReceivedStdout(TDEProcess *, char *text, int len)
{
m_str += TQCString(text, len+1);
}
-void ShellInsertDialog::slotProcessExited(KProcess *)
+void ShellInsertDialog::slotProcessExited(TDEProcess *)
{
if (m_proc->normalExit()) {
accept();