RemoteLinux: Base AbstractLinuxRunSupport on PE::ToolSupport

This continues the quest started with eb0b0f944.

This also moves the AnalyzerRunControl::starting signal to the
base, similar to the already present started and finished
signals. Moving emission of the signal to the base is left
to a follow-up patch to keep this here small.

Change-Id: I12e04823df22e7667a4d0a9ee7412153180c60cc
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
hjk
2017-03-28 09:07:29 +02:00
parent a5574bc802
commit 2a1e7cb9f5
10 changed files with 56 additions and 56 deletions

View File

@@ -989,4 +989,9 @@ RunControl *ToolRunner::runControl() const
return m_runControl;
}
void ToolRunner::appendMessage(const QString &msg, OutputFormat format)
{
m_runControl->appendMessage(msg, format);
}
} // namespace ProjectExplorer