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/subversion/subversionplugin.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/subversion/subversionplugin.cpp')
-rw-r--r-- | src/plugins/subversion/subversionplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/subversion/subversionplugin.cpp b/src/plugins/subversion/subversionplugin.cpp index e65a1b88cb..47b67b6362 100644 --- a/src/plugins/subversion/subversionplugin.cpp +++ b/src/plugins/subversion/subversionplugin.cpp @@ -1030,7 +1030,7 @@ SubversionResponse SubversionPluginPrivate::runSvn(const FilePath &workingDir, QtcProcess proc; m_client->vcsFullySynchronousExec(proc, workingDir, arguments, flags, timeOutS, outputCodec); - response.error = proc.result() != QtcProcess::FinishedWithSuccess; + response.error = proc.result() != ProcessResult::FinishedWithSuccess; if (response.error) response.message = proc.exitMessage(); response.stdErr = proc.stdErr(); |