CompileOutputWindow: Remove unused ctor parameter

Change-Id: I890575cfbec90780461b249e36caebf40558f3fc
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Daniel Teske
2014-01-27 14:04:03 +01:00
parent f3fbc36d77
commit 86e3d5af5f
3 changed files with 3 additions and 3 deletions

View File

@@ -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;

View File

@@ -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)
{ {

View File

@@ -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 *);