diff options
author | Jarek Kobus <[email protected]> | 2023-11-04 12:57:23 +0100 |
---|---|---|
committer | Jarek Kobus <[email protected]> | 2023-11-07 14:09:23 +0000 |
commit | 4c38f68d0fcaf3f064197bb166b54b9c2040cebe (patch) | |
tree | ca527d30e17b57358669d575e200b619338b47a8 /src/plugins/valgrind/valgrindprocess.cpp | |
parent | 2c0a59384c9d250ecfbbe6d66f4848b82c6a2811 (diff) |
TaskTree: Rename StopWithDone -> StopWithSuccess
Make naming consistent with recent changes.
"Done" is meant to be an event name when the task / group
finishes. "Done" may finish with "Success" or an "Error".
This addresses the 26th point in the task below.
Task-number: QTCREATORBUG-28741
Change-Id: I53ed6905b1c385c398f49e122e8ca60aa3ad0806
Reviewed-by: <[email protected]>
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/valgrind/valgrindprocess.cpp')
-rw-r--r-- | src/plugins/valgrind/valgrindprocess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/valgrind/valgrindprocess.cpp b/src/plugins/valgrind/valgrindprocess.cpp index d8581f94d92..e4178f84397 100644 --- a/src/plugins/valgrind/valgrindprocess.cpp +++ b/src/plugins/valgrind/valgrindprocess.cpp @@ -181,7 +181,7 @@ Group ValgrindProcessPrivate::runRecipe() const }; const auto onParserGroupSetup = [this] { - return m_localServerAddress.isNull() ? SetupResult::StopWithDone : SetupResult::Continue; + return m_localServerAddress.isNull() ? SetupResult::StopWithSuccess : SetupResult::Continue; }; const auto onParserSetup = [this, storage](Parser &parser) { |