Fix compile error when using Qt5.2
Error message: 'QJsonValue::QJsonValue(const void*)' is private
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user