forked from qt-creator/qt-creator
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user