summaryrefslogtreecommitdiff
path: root/src/qev
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-07-31 17:39:49 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-12-19 14:37:51 +0100
commit33f74f44615d188bac04b6cc9811c672ac60e6e1 (patch)
tree94b40dd5e77fda1563bf0db6e6cb89811852a9dc /src/qev
parentb122963e2363709d104cd6c180798d27812bb002 (diff)
downloadqttools-33f74f44615d188bac04b6cc9811c672ac60e6e1.tar.gz
Fix Qt6 build
Fixes some unprefied textstream usages. Bump the module version to 6.0.0. Also windeployqt auto test is temporarily blacklisted because with the current situation it's not possible to make it pass both with a 5.x and a 6.x Qt build, and thus this would prevent a qt5.git integration. Change-Id: If750cf4f50ba4215cb63b53c42971f3d1f1c8160 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> (cherry picked from commit f3d047af903801d9e7705816df5299c4e04a76f4) Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src/qev')
-rw-r--r--src/qev/qev.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qev/qev.cpp b/src/qev/qev.cpp
index b7de5dc73..01bfbd9e9 100644
--- a/src/qev/qev.cpp
+++ b/src/qev/qev.cpp
@@ -43,7 +43,7 @@ public:
bool event(QEvent *e) {
if (e->type() == QEvent::ContextMenu)
return false;
- QDebug(qout) << e << endl;
+ QDebug(qout) << e << Qt::endl;
return QWidget::event(e);
}
};