Merge pull request #15444 from SamGondelman/warning

Case 22262: Comment out QScript type warning
This commit is contained in:
Shannon Romano 2019-04-24 09:22:58 -07:00 committed by GitHub
commit 26e65b7ca6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,7 @@ QScriptValue variantToScriptValue(QVariant& qValue, QScriptEngine& scriptEngine)
if (qValue.canConvert<float>()) {
return qValue.toFloat();
}
qCDebug(shared) << "unhandled QScript type" << qValue.type();
//qCDebug(shared) << "unhandled QScript type" << qValue.type();
break;
}