diff options
author | Jarek Kobus <[email protected]> | 2024-01-22 18:59:10 +0100 |
---|---|---|
committer | Jarek Kobus <[email protected]> | 2024-01-23 07:09:22 +0000 |
commit | 63fc22e274d98f7e51a3f9f5335bbd4a31636c2f (patch) | |
tree | b4486531dae624f1184534d40dc254dbf07c5ab4 /src/plugins/android/androidsdkmanager.cpp | |
parent | f86ada790a8b8936c4505acb7733ebd686ce2a41 (diff) |
Process: Change signature of waitForXxx() functions
Change the arg to QDeadlineTimer type.
Change-Id: Id3dee0717e44130c16baf7925e5b06346a1a1ad1
Reviewed-by: hjk <[email protected]>
Reviewed-by: Orgad Shaneh <[email protected]>
Reviewed-by: Qt CI Bot <[email protected]>
Diffstat (limited to 'src/plugins/android/androidsdkmanager.cpp')
-rw-r--r-- | src/plugins/android/androidsdkmanager.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/android/androidsdkmanager.cpp b/src/plugins/android/androidsdkmanager.cpp index 1740d9aff9d..bb647d0a846 100644 --- a/src/plugins/android/androidsdkmanager.cpp +++ b/src/plugins/android/androidsdkmanager.cpp @@ -27,6 +27,7 @@ const char commonArgsKey[] = "Common Arguments:"; using namespace Utils; using namespace std::chrono; +using namespace std::chrono_literals; namespace Android { namespace Internal { @@ -528,7 +529,7 @@ void AndroidSdkManagerPrivate::getPendingLicense(SdkCmdPromise &fi) licenseCommand.start(); QTextCodec *codec = QTextCodec::codecForLocale(); int inputCounter = 0, steps = -1; - while (!licenseCommand.waitForFinished(200)) { + while (!licenseCommand.waitForFinished(200ms)) { QString stdOut = codec->toUnicode(licenseCommand.readAllRawStandardOutput()); bool assertionFound = false; if (!stdOut.isEmpty()) @@ -556,9 +557,9 @@ void AndroidSdkManagerPrivate::getPendingLicense(SdkCmdPromise &fi) if (fi.isCanceled()) { licenseCommand.terminate(); - if (!licenseCommand.waitForFinished(300)) { + if (!licenseCommand.waitForFinished(300ms)) { licenseCommand.kill(); - licenseCommand.waitForFinished(200); + licenseCommand.waitForFinished(200ms); } } if (licenseCommand.state() == QProcess::NotRunning) |