Valgrind: Rename ValgrindRunner -> ValgrindProcess

Change-Id: I5e7d704c749e53672915c5f7aab64abb68353f24
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2023-08-16 23:17:10 +02:00
parent e8510501d8
commit 1d5102781d
11 changed files with 58 additions and 58 deletions

View File

@@ -33,11 +33,11 @@ ValgrindToolRunner::ValgrindToolRunner(RunControl *runControl)
m_settings.fromMap(runControl->settingsData(ANALYZER_VALGRIND_SETTINGS));
connect(&m_runner, &ValgrindRunner::appendMessage, this,
connect(&m_runner, &ValgrindProcess::appendMessage, this,
[this](const QString &msg, Utils::OutputFormat format) { appendMessage(msg, format); });
connect(&m_runner, &ValgrindRunner::processErrorReceived,
connect(&m_runner, &ValgrindProcess::processErrorReceived,
this, &ValgrindToolRunner::receiveProcessError);
connect(&m_runner, &ValgrindRunner::done,
connect(&m_runner, &ValgrindProcess::done,
this, &ValgrindToolRunner::runnerFinished);
}