aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-27 13:32:20 +0200
committerhjk <hjk@qt.io>2019-05-27 12:33:29 +0000
commit19e1cf1520c313f0dbecac649b8f1270acfbe2d3 (patch)
tree21784605725cba8f809c5fbac5e431cc91d9812f /tests/auto
parentf7d224bf58894ea4f4b5df0abd28abec46964ded (diff)
Replace uses of qVariantFromValue with QVariant::fromValue
Deprecated in Qt 5.14, alternative has been around since Qt 4 at least. Change-Id: I4e3a53c289088368609e0d0ce2405a832d311308 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index fac13979db..237c08b66d 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -3685,7 +3685,7 @@ void tst_Dumpers::dumper_data()
"QList<int> list;\n"
"list << 1 << 2 << 3;\n"
- "QVariant v3 = qVariantFromValue(list);\n"
+ "QVariant v3 = QVariant::fromValue(list);\n"
"unused(&list, &v3);\n\n")
+ CoreProfile()