aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEirik Aavitsland <eirik.aavitsland@qt.io>2021-03-01 08:54:35 +0100
committerEirik Aavitsland <eirik.aavitsland@qt.io>2021-03-01 13:58:27 +0000
commit75fc3d1cd4347ae6226a2baa99b861de65b62a5e (patch)
treee22f255896eca16d88dbba1094165ba95dcb79ad
parent8e904d9c8b36af4310070aa68ddb04cf33520b52 (diff)
Fix broken compilation of lancelot test
'override' was recently added erroneously here. This is not referring to QQmlDataTest's virtual initTestCase(), but QTestlib's original non-virtual initTestCase(). Change-Id: I24ca19e1694b1ee04bbe3c12bd1a8afc35a3dfd9 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
-rw-r--r--tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp b/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp
index 0e0f79274d..2c28b5c914 100644
--- a/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp
+++ b/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp
@@ -57,7 +57,7 @@ public:
tst_Scenegraph();
private Q_SLOTS:
- void initTestCase() override;
+ void initTestCase();
void cleanup();
#ifdef TEXTLESS_TEST
void testNoTextRendering_data();