summaryrefslogtreecommitdiffstats
path: root/kommander/widgets/execbutton.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-03-07 20:24:08 +0100
committerSlávek Banko <slavek.banko@axis.cz>2021-03-12 00:35:39 +0100
commit369d8455ac39aa9f5328b855bd5f456e3f384a63 (patch)
treeea0e74835bcc4c1ca9245316ffebf9a439828dd3 /kommander/widgets/execbutton.cpp
parenteea71ca9ecdfbd4682054a86cc9bbf954af94693 (diff)
downloadtdewebdev-369d8455ac39aa9f5328b855bd5f456e3f384a63.tar.gz
tdewebdev-369d8455ac39aa9f5328b855bd5f456e3f384a63.zip
Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 70defe5e6d9498c5c6011eee50c4dc506abebd61)
Diffstat (limited to 'kommander/widgets/execbutton.cpp')
-rw-r--r--kommander/widgets/execbutton.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kommander/widgets/execbutton.cpp b/kommander/widgets/execbutton.cpp
index fa535813..d4969444 100644
--- a/kommander/widgets/execbutton.cpp
+++ b/kommander/widgets/execbutton.cpp
@@ -126,7 +126,7 @@ void ExecButton::startProcess()
{
TDEApplication::restoreOverrideCursor();
if (writeStdout())
- cout << m_output << flush;
+ cout << m_output.local8Bit() << flush;
}
setEnabled(enabledStatus);
}
@@ -160,7 +160,7 @@ void ExecButton::processExited(MyProcess* p)
{
m_output = p->output();
if (writeStdout())
- cout << m_output << flush;
+ cout << m_output.local8Bit() << flush;
delete p;
}
}