aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmldebug
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 /src/libs/qmldebug
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 'src/libs/qmldebug')
-rw-r--r--src/libs/qmldebug/baseenginedebugclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmldebug/baseenginedebugclient.cpp b/src/libs/qmldebug/baseenginedebugclient.cpp
index 86f54741fc..45cf7590c9 100644
--- a/src/libs/qmldebug/baseenginedebugclient.cpp
+++ b/src/libs/qmldebug/baseenginedebugclient.cpp
@@ -121,7 +121,7 @@ void BaseEngineDebugClient::decode(QDataStream &ds,
{
ObjectReference obj;
obj.m_debugId = prop.m_value.toInt();
- prop.m_value = qVariantFromValue(obj);
+ prop.m_value = QVariant::fromValue(obj);
break;
}
case QmlObjectProperty::Unknown: