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*)),
|
connect(SessionManager::instance(), SIGNAL(aboutToRemoveProject(ProjectExplorer::Project*)),
|
||||||
this, SLOT(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);
|
ExtensionSystem::PluginManager::addObject(d->m_outputWindow);
|
||||||
|
|
||||||
d->m_taskWindow = new Internal::TaskWindow;
|
d->m_taskWindow = new Internal::TaskWindow;
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ private:
|
|||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
} // namespace ProjectExplorer
|
} // namespace ProjectExplorer
|
||||||
|
|
||||||
CompileOutputWindow::CompileOutputWindow(BuildManager * /*bm*/, QAction *cancelBuildAction) :
|
CompileOutputWindow::CompileOutputWindow(QAction *cancelBuildAction) :
|
||||||
m_cancelBuildButton(new QToolButton),
|
m_cancelBuildButton(new QToolButton),
|
||||||
m_escapeCodeHandler(new Utils::AnsiEscapeCodeHandler)
|
m_escapeCodeHandler(new Utils::AnsiEscapeCodeHandler)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ class CompileOutputWindow : public Core::IOutputPane
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CompileOutputWindow(BuildManager *bm, QAction *cancelBuildAction);
|
CompileOutputWindow(QAction *cancelBuildAction);
|
||||||
~CompileOutputWindow();
|
~CompileOutputWindow();
|
||||||
|
|
||||||
QWidget *outputWidget(QWidget *);
|
QWidget *outputWidget(QWidget *);
|
||||||
|
|||||||
Reference in New Issue
Block a user