IOutputPane: constify some member functions

Change-Id: I023b7f5976b30fc950d2dd5a76f749ef4720ac2f
Reviewed-on: http://codereview.qt-project.org/5618
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
hjk
2011-09-27 13:47:06 +02:00
committed by Eike Ziller
parent 7d96ba70c9
commit 373d51a1ed
17 changed files with 101 additions and 122 deletions

View File

@@ -93,12 +93,12 @@ void CompileOutputWindow::updateWordWrapMode()
m_outputWindow->setWordWrapEnabled(ProjectExplorerPlugin::instance()->projectExplorerSettings().wrapAppOutput);
}
bool CompileOutputWindow::hasFocus()
bool CompileOutputWindow::hasFocus() const
{
return m_outputWindow->hasFocus();
}
bool CompileOutputWindow::canFocus()
bool CompileOutputWindow::canFocus() const
{
return true;
}
@@ -161,12 +161,12 @@ int CompileOutputWindow::priorityInStatusBar() const
return 50;
}
bool CompileOutputWindow::canNext()
bool CompileOutputWindow::canNext() const
{
return false;
}
bool CompileOutputWindow::canPrevious()
bool CompileOutputWindow::canPrevious() const
{
return false;
}
@@ -181,7 +181,7 @@ void CompileOutputWindow::goToPrev()
}
bool CompileOutputWindow::canNavigate()
bool CompileOutputWindow::canNavigate() const
{
return false;
}