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;
|
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"
|
||||||
|
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user