Remove AppOutputPane::runControls()

The function is unused

Change-Id: If12869fd51014a06d3feeb5f147e070f5f1ce463
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Daniel Teske
2014-06-12 16:37:21 +02:00
parent 9ba8040254
commit cf3d47ccd8
4 changed files with 0 additions and 17 deletions

View File

@@ -630,13 +630,5 @@ bool AppOutputPane::canNavigate() const
return false; return false;
} }
QList<RunControl *> AppOutputPane::runControls() const
{
QList<RunControl *> result;
foreach (const RunControlTab& tab, m_runControlTabs)
result << tab.runControl;
return result;
}
#include "appoutputpane.moc" #include "appoutputpane.moc"

View File

@@ -91,8 +91,6 @@ public:
bool aboutToClose() const; bool aboutToClose() const;
bool closeTabs(CloseTabMode mode); bool closeTabs(CloseTabMode mode);
QList<RunControl *> runControls() const;
signals: signals:
void allRunControlsFinished(); void allRunControlsFinished();
void runControlStarted(ProjectExplorer::RunControl *rc); void runControlStarted(ProjectExplorer::RunControl *rc);

View File

@@ -1733,11 +1733,6 @@ void ProjectExplorerPlugin::startRunControl(RunControl *runControl, RunMode runM
emit updateRunActions(); emit updateRunActions();
} }
QList<RunControl *> ProjectExplorerPlugin::runControls() const
{
return d->m_outputPane->runControls();
}
void ProjectExplorerPlugin::initiateInlineRenaming() void ProjectExplorerPlugin::initiateInlineRenaming()
{ {
renameFile(); renameFile();

View File

@@ -120,8 +120,6 @@ public:
/// This function needs to be called, only if the pages that support a project changed. /// This function needs to be called, only if the pages that support a project changed.
void requestProjectModeUpdate(ProjectExplorer::Project *p); void requestProjectModeUpdate(ProjectExplorer::Project *p);
QList<RunControl *> runControls() const;
void initiateInlineRenaming(); void initiateInlineRenaming();
static QString displayNameForStepId(Core::Id stepId); static QString displayNameForStepId(Core::Id stepId);