Qml run controls automatically stop all run controls for the same file

That's something which has been asked for multiple times. Also related
to the task below.

Change-Id: I1130a2a3527479f18bde2abfbff28fb556f437b9
Task-Nr: QTCREATORBUG-3508
Reviewed-on: http://codereview.qt.nokia.com/1844
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
Daniel Teske
2011-07-04 14:09:27 +02:00
parent 7d39539657
commit b778692510
6 changed files with 40 additions and 1 deletions

View File

@@ -536,3 +536,12 @@ bool AppOutputPane::canNavigate()
{
return false;
}
QList<RunControl *> AppOutputPane::runControls() const
{
QList<RunControl *> result;
foreach (const RunControlTab& tab, m_runControlTabs)
result << tab.runControl;
return result;
}