forked from qt-creator/qt-creator
CompileOutputWindow: Remove unused ctor parameter
Change-Id: I890575cfbec90780461b249e36caebf40558f3fc Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -133,7 +133,7 @@ BuildManager::BuildManager(QObject *parent, QAction *cancelBuildAction)
|
||||
connect(SessionManager::instance(), SIGNAL(aboutToRemoveProject(ProjectExplorer::Project*)),
|
||||
this, SLOT(aboutToRemoveProject(ProjectExplorer::Project*)));
|
||||
|
||||
d->m_outputWindow = new Internal::CompileOutputWindow(this, cancelBuildAction);
|
||||
d->m_outputWindow = new Internal::CompileOutputWindow(cancelBuildAction);
|
||||
ExtensionSystem::PluginManager::addObject(d->m_outputWindow);
|
||||
|
||||
d->m_taskWindow = new Internal::TaskWindow;
|
||||
|
||||
@@ -102,7 +102,7 @@ private:
|
||||
} // namespace Internal
|
||||
} // namespace ProjectExplorer
|
||||
|
||||
CompileOutputWindow::CompileOutputWindow(BuildManager * /*bm*/, QAction *cancelBuildAction) :
|
||||
CompileOutputWindow::CompileOutputWindow(QAction *cancelBuildAction) :
|
||||
m_cancelBuildButton(new QToolButton),
|
||||
m_escapeCodeHandler(new Utils::AnsiEscapeCodeHandler)
|
||||
{
|
||||
|
||||
@@ -58,7 +58,7 @@ class CompileOutputWindow : public Core::IOutputPane
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CompileOutputWindow(BuildManager *bm, QAction *cancelBuildAction);
|
||||
CompileOutputWindow(QAction *cancelBuildAction);
|
||||
~CompileOutputWindow();
|
||||
|
||||
QWidget *outputWidget(QWidget *);
|
||||
|
||||
Reference in New Issue
Block a user