summaryrefslogtreecommitdiffstats
path: root/src/imports
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-07-10 18:48:34 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-12-05 14:39:58 +0000
commitc172655a2d9d3b3a8948ee603ad39613ca5ec778 (patch)
tree4aed4183f2f3d20f1e022c0af9bf6acf775d1a44 /src/imports
parent9f38ebaa5696d8c9202ddf495997c647e7235509 (diff)
Fix usages of text stream operators
Change-Id: I53cf87bb4bb055d56f2332d7737f205ec9560774 (cherry picked from commit 38f88ebfebeccc1a6c2b41f885b2a6a8fa74a447) Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/imports')
-rw-r--r--src/imports/scxmlstatemachine/statemachineloader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/scxmlstatemachine/statemachineloader.cpp b/src/imports/scxmlstatemachine/statemachineloader.cpp
index d691479..1d312a5 100644
--- a/src/imports/scxmlstatemachine/statemachineloader.cpp
+++ b/src/imports/scxmlstatemachine/statemachineloader.cpp
@@ -191,7 +191,7 @@ bool QScxmlStateMachineLoader::parse(const QUrl &source)
} else {
qmlWarning(this) << QStringLiteral("Something went wrong while parsing '%1':")
.arg(source.url())
- << endl;
+ << Qt::endl;
const auto errors = m_stateMachine->parseErrors();
for (const QScxmlError &error : errors) {
qmlWarning(this) << error.toString();