diff options
author | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-03-02 04:12:25 +0100 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-03-02 13:30:39 +0000 |
commit | 8e0ae8ba96ec5ca4512e39a16135e2279e88a4fb (patch) | |
tree | 0ffc1fb82bf551353e0ff5ade46af0c6565b4fc6 /src/plugins/android/androidsettingswidget.cpp | |
parent | 6ff1723c4cb709ebffe2bb0c593371c51e6cf736 (diff) | |
download | qt-creator-8e0ae8ba96ec5ca4512e39a16135e2279e88a4fb.tar.gz |
QtcProcess: Limit the inclusion of qtcprocess.h
Move the rest of QtcProcess enums to processenums.h.
Move ExitCodeInterpreter into processenums.h.
Remove superfluous Utils:: prefix.
Change-Id: Iaa596f353d33d6930085a621b114cc15a35caa80
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/plugins/android/androidsettingswidget.cpp')
-rw-r--r-- | src/plugins/android/androidsettingswidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androidsettingswidget.cpp b/src/plugins/android/androidsettingswidget.cpp index e928023937..cf920f53f1 100644 --- a/src/plugins/android/androidsettingswidget.cpp +++ b/src/plugins/android/androidsettingswidget.cpp @@ -636,7 +636,7 @@ void AndroidSettingsWidget::downloadOpenSslRepo(const bool silent) m_ui.openSslPathChooser->triggerChanged(); // After cloning, the path exists if (!openSslProgressDialog->wasCanceled() - || gitCloner->result() == QtcProcess::FinishedWithError) { + || gitCloner->result() == ProcessResult::FinishedWithError) { failDialog(); } }); |