Fix compile error when using Qt5.2

Error message: 'QJsonValue::QJsonValue(const void*)' is private
This commit is contained in:
U. Bruhin
2017-02-12 23:09:51 +01:00
parent 334930bfaa
commit 453fbfd163
+1 -1
View File
@@ -1109,7 +1109,7 @@ bool deployQmlImports(const QString &appDirPath, DeploymentInfo deploymentInfo,
QString path = import["path"].toString();
QString type = import["type"].toString();
if (import["name"] == "QtQuick.Controls")
if (import["name"].toString() == "QtQuick.Controls")
qtQuickContolsInUse = true;
LogNormal() << "Deploying QML import" << name;