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

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