summaryrefslogtreecommitdiffstats
path: root/tests/auto/render/scene2d/tst_scene2d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/render/scene2d/tst_scene2d.cpp')
-rw-r--r--tests/auto/render/scene2d/tst_scene2d.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/auto/render/scene2d/tst_scene2d.cpp b/tests/auto/render/scene2d/tst_scene2d.cpp
index 997b96d0d..95f30ad9a 100644
--- a/tests/auto/render/scene2d/tst_scene2d.cpp
+++ b/tests/auto/render/scene2d/tst_scene2d.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtTest/QTest>
#include <Qt3DQuickScene2D/qscene2d.h>
@@ -42,11 +42,7 @@ public:
e->type() <= QEvent::MouseMove) {
QMouseEvent *me = static_cast<QMouseEvent *>(e);
m_eventTypes.push_back(e->type());
-#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
m_mousePoints.push_back(me->position());
-#else
- m_mousePoints.push_back(me->pos());
-#endif
}
return QQuickWindow::event(e);
}