summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/kernel/qguivariant
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2022-03-21 09:02:48 +0100
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2022-03-21 20:41:23 +0100
commitc924c05ae226524755b1701a5a40e436a08ca2e6 (patch)
treed1585c8b08da93db53bcd448248b90eef8374950 /tests/auto/gui/kernel/qguivariant
parent4ac00ca901f1cbd503b858eb1e5ed19079c31f44 (diff)
Replace deprecated QColor::fromString in tests and documentation
Don't use deprecated methods in tests, and don't refer to them in documentation. Change-Id: I110480742d9a7b9b0a2e194e3fe610208c1e07da Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Diffstat (limited to 'tests/auto/gui/kernel/qguivariant')
-rw-r--r--tests/auto/gui/kernel/qguivariant/test/tst_qguivariant.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/gui/kernel/qguivariant/test/tst_qguivariant.cpp b/tests/auto/gui/kernel/qguivariant/test/tst_qguivariant.cpp
index aea5cb3ac3..093b9c8eaf 100644
--- a/tests/auto/gui/kernel/qguivariant/test/tst_qguivariant.cpp
+++ b/tests/auto/gui/kernel/qguivariant/test/tst_qguivariant.cpp
@@ -245,7 +245,7 @@ void tst_QGuiVariant::toColor_data()
QTest::newRow("qstring(#ff0000)") << QVariant(QString::fromUtf8("#ff0000")) << c;
QTest::newRow("qbytearray(#ff0000)") << QVariant(QByteArray("#ff0000")) << c;
- c.setNamedColor("#88112233");
+ c = QColor::fromString("#88112233");
QTest::newRow("qstring(#88112233)") << QVariant(QString::fromUtf8("#88112233")) << c;
QTest::newRow("qbytearray(#88112233)") << QVariant(QByteArray("#88112233")) << c;
}