Skip to content
Snippets Groups Projects
Commit 117bd1f5 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

QML wizard: Make Qt detection work for major versions > 4.

parent 5f135903
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@ AbstractMobileAppWizardDialog *QmlStandaloneAppWizard::createWizardDialogInterna
if (!isNumber || majorVersion < 4)
continue;
const int minorVersion = versionString.mid(2, 1).toInt(&isNumber);
if (!isNumber || minorVersion < 7)
if (!isNumber || (majorVersion == 4 && minorVersion < 7))
continue;
qmlQtVersions << qtVersion;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment