From 8929c0a3550ae27cb5c9ed276d4c5a85594ba682 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Mon, 15 Jun 2020 09:09:08 +0200 Subject: Remove QVariant(int type, void *data, ...) constructor It was marked internal anyway. Use the constructor taking a QMetaType instead. Change-Id: I15b9cd0911aac063a0f0fe0352fa2c84b7f7c691 Reviewed-by: Lars Knoll --- tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/auto/testlib/selftests') diff --git a/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp b/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp index fca49c9e07..14933fbe8b 100644 --- a/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp +++ b/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp @@ -317,14 +317,14 @@ void tst_Cmptest::compare_tostring_data() QTest::newRow("string, null user type") << QVariant::fromValue(QString::fromLatin1("A simple string")) - << QVariant(QVariant::Type(qRegisterMetaType("PhonyClass"))) + << QVariant(QMetaType::fromType()) ; PhonyClass fake1 = {1}; PhonyClass fake2 = {2}; QTest::newRow("both non-null user type") - << QVariant(qRegisterMetaType("PhonyClass"), (const void*)&fake1) - << QVariant(qRegisterMetaType("PhonyClass"), (const void*)&fake2) + << QVariant(QMetaType::fromType(), (const void*)&fake1) + << QVariant(QMetaType::fromType(), (const void*)&fake2) ; } -- cgit v1.2.3