Replace QtSupport::QtVersionNumber with QVersionNumber

Task-number: QTCREATORBUG-27786
Change-Id: I71a44709c264829f629c9dfce702076eda297a77
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Alessandro Portale
2022-07-04 18:36:40 +02:00
parent 1e8089d5b7
commit a917770053
32 changed files with 107 additions and 197 deletions

View File

@@ -184,7 +184,7 @@ static QUrl localServerUrl(RunControl *runControl)
Kit *kit = runControl->kit();
const QtSupport::QtVersion *version = QtSupport::QtKitAspect::qtVersion(kit);
if (version) {
if (version->qtVersion() >= QtSupport::QtVersionNumber(5, 6, 0))
if (version->qtVersion() >= QVersionNumber(5, 6, 0))
serverUrl = Utils::urlFromLocalSocket();
else
serverUrl = Utils::urlFromLocalHostAndFreePort();