ConsoleProcess: Uniform the common interface of QtcProcess

This is a preliminary step before merging ConsoleProcess
into QtcProcess.

Don't return bool from start(), all callers ignored it.
Rename stop() to stopProcess().

Change-Id: I2fda1337e6f490685669fbd7ad6987a97866fdbe
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-01-20 17:13:59 +01:00
parent 15479285e3
commit c4054b5d1c
5 changed files with 21 additions and 23 deletions

View File

@@ -224,7 +224,7 @@ void TerminalRunner::start()
void TerminalRunner::stop()
{
m_stubProc.stop();
m_stubProc.stopProcess();
reportStopped();
}