ProcessInterface: Rename interruptProcess() -> interrupt()

Both functionalities meant to do the same.

Change-Id: Idd9373cdb24b7b41f9e4befb09326c339263eeb1
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-03-04 08:30:19 +01:00
parent ced2b9c4c0
commit 82108e949a
8 changed files with 19 additions and 27 deletions

View File

@@ -182,10 +182,10 @@ void TerminalRunner::kickoffProcess()
m_stubProc->kickoffProcess();
}
void TerminalRunner::interruptProcess()
void TerminalRunner::interrupt()
{
if (m_stubProc)
m_stubProc->interruptProcess();
m_stubProc->interrupt();
}
void TerminalRunner::start()