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:
@@ -318,27 +318,27 @@ void VCSBaseOutputWindow::setFocus()
|
||||
{
|
||||
}
|
||||
|
||||
bool VCSBaseOutputWindow::hasFocus()
|
||||
bool VCSBaseOutputWindow::hasFocus() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool VCSBaseOutputWindow::canFocus()
|
||||
bool VCSBaseOutputWindow::canFocus() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool VCSBaseOutputWindow::canNavigate()
|
||||
bool VCSBaseOutputWindow::canNavigate() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool VCSBaseOutputWindow::canNext()
|
||||
bool VCSBaseOutputWindow::canNext() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool VCSBaseOutputWindow::canPrevious()
|
||||
bool VCSBaseOutputWindow::canPrevious() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user