summaryrefslogtreecommitdiff
path: root/tests/auto/qxmlquery/tst_qxmlquery.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qxmlquery/tst_qxmlquery.cpp')
-rw-r--r--tests/auto/qxmlquery/tst_qxmlquery.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/qxmlquery/tst_qxmlquery.cpp b/tests/auto/qxmlquery/tst_qxmlquery.cpp
index 3350911..30a900f 100644
--- a/tests/auto/qxmlquery/tst_qxmlquery.cpp
+++ b/tests/auto/qxmlquery/tst_qxmlquery.cpp
@@ -1257,12 +1257,12 @@ void tst_QXmlQuery::basicXQueryToQtTypeCheck() const
* just artifacts created somewhere. */
if(produced.type() == QVariant::Double)
QVERIFY(qFuzzyCompare(produced.toDouble(), expected.toDouble()));
- else if(qVariantCanConvert<QXmlName>(produced))
+ else if (produced.canConvert<QXmlName>())
{
/* QVariant::operator==() does identity comparison, it doesn't delegate to operator==() of
* the contained type, unless it's hardcoded into QVariant. */
- const QXmlName n1 = qVariantValue<QXmlName>(produced);
- const QXmlName n2 = qVariantValue<QXmlName>(expected);
+ const QXmlName n1 = qvariant_cast<QXmlName>(produced);
+ const QXmlName n2 = qvariant_cast<QXmlName>(expected);
QCOMPARE(n1, n2);
}
else