summaryrefslogtreecommitdiff
path: root/examples/script/qsdbg/scriptdebugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/script/qsdbg/scriptdebugger.cpp')
-rw-r--r--examples/script/qsdbg/scriptdebugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/script/qsdbg/scriptdebugger.cpp b/examples/script/qsdbg/scriptdebugger.cpp
index 62eb721..479c26d 100644
--- a/examples/script/qsdbg/scriptdebugger.cpp
+++ b/examples/script/qsdbg/scriptdebugger.cpp
@@ -256,13 +256,13 @@ void ScriptDebuggerPrivate::output(const QString &text)
void ScriptDebuggerPrivate::message(const QString &text)
{
- *m_outputStream << text << endl;
+ *m_outputStream << text << Qt::endl;
m_outputStream->flush();
}
void ScriptDebuggerPrivate::errorMessage(const QString &text)
{
- *m_errorStream << text << endl;
+ *m_errorStream << text << Qt::endl;
m_errorStream->flush();
}