ValgrindRunner: Rename finished() into done()

Add bool success arg into done signal.

Change-Id: Id39a727860e0e705513917f69ecd38e455078b5a
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2023-08-16 16:55:15 +02:00
parent 3ca0a9d23c
commit 45246834cc
5 changed files with 8 additions and 7 deletions

View File

@@ -41,7 +41,7 @@ ValgrindToolRunner::ValgrindToolRunner(RunControl *runControl)
[this](const QString &msg, Utils::OutputFormat format) { appendMessage(msg, format); });
connect(&m_runner, &ValgrindRunner::processErrorReceived,
this, &ValgrindToolRunner::receiveProcessError);
connect(&m_runner, &ValgrindRunner::finished,
connect(&m_runner, &ValgrindRunner::done,
this, &ValgrindToolRunner::runnerFinished);
}