forked from qt-creator/qt-creator
Remove AppOutputPane::runControls()
The function is unused Change-Id: If12869fd51014a06d3feeb5f147e070f5f1ce463 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -630,13 +630,5 @@ bool AppOutputPane::canNavigate() const
|
||||
return false;
|
||||
}
|
||||
|
||||
QList<RunControl *> AppOutputPane::runControls() const
|
||||
{
|
||||
QList<RunControl *> result;
|
||||
foreach (const RunControlTab& tab, m_runControlTabs)
|
||||
result << tab.runControl;
|
||||
return result;
|
||||
}
|
||||
|
||||
#include "appoutputpane.moc"
|
||||
|
||||
|
||||
@@ -91,8 +91,6 @@ public:
|
||||
bool aboutToClose() const;
|
||||
bool closeTabs(CloseTabMode mode);
|
||||
|
||||
QList<RunControl *> runControls() const;
|
||||
|
||||
signals:
|
||||
void allRunControlsFinished();
|
||||
void runControlStarted(ProjectExplorer::RunControl *rc);
|
||||
|
||||
@@ -1733,11 +1733,6 @@ void ProjectExplorerPlugin::startRunControl(RunControl *runControl, RunMode runM
|
||||
emit updateRunActions();
|
||||
}
|
||||
|
||||
QList<RunControl *> ProjectExplorerPlugin::runControls() const
|
||||
{
|
||||
return d->m_outputPane->runControls();
|
||||
}
|
||||
|
||||
void ProjectExplorerPlugin::initiateInlineRenaming()
|
||||
{
|
||||
renameFile();
|
||||
|
||||
@@ -120,8 +120,6 @@ public:
|
||||
/// This function needs to be called, only if the pages that support a project changed.
|
||||
void requestProjectModeUpdate(ProjectExplorer::Project *p);
|
||||
|
||||
QList<RunControl *> runControls() const;
|
||||
|
||||
void initiateInlineRenaming();
|
||||
|
||||
static QString displayNameForStepId(Core::Id stepId);
|
||||
|
||||
Reference in New Issue
Block a user