summaryrefslogtreecommitdiffstats
path: root/kommander/widget
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/widget')
-rw-r--r--kommander/widget/myprocess.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kommander/widget/myprocess.cpp b/kommander/widget/myprocess.cpp
index 111612b5..ac4f348d 100644
--- a/kommander/widget/myprocess.cpp
+++ b/kommander/widget/myprocess.cpp
@@ -32,8 +32,8 @@ MyProcess::MyProcess(const KommanderWidget *a_atw)
{
}
-void qt_enter_modal(TQWidget *widget);
-void qt_leave_modal(TQWidget *widget);
+void tqt_enter_modal(TQWidget *widget);
+void tqt_leave_modal(TQWidget *widget);
void MyProcess::setBlocking(bool blocking)
{
@@ -104,9 +104,9 @@ TQString MyProcess::run(const TQString& a_command, const TQString& a_shell)
TQWidget dummy(0, 0, WType_Dialog | WShowModal);
dummy.setFocusPolicy(TQ_NoFocus);
m_loopStarted = true;
- qt_enter_modal(&dummy);
+ tqt_enter_modal(&dummy);
tqApp->enter_loop();
- qt_leave_modal(&dummy);
+ tqt_leave_modal(&dummy);
if (!m_output.isEmpty() && m_output[m_output.length()-1] == '\n')
return m_output.left(m_output.length()-1);