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

@@ -50,12 +50,12 @@ MessageOutputWindow::~MessageOutputWindow()
delete m_widget;
}
bool MessageOutputWindow::hasFocus()
bool MessageOutputWindow::hasFocus() const
{
return m_widget->hasFocus();
}
bool MessageOutputWindow::canFocus()
bool MessageOutputWindow::canFocus() const
{
return true;
}
@@ -95,12 +95,12 @@ int MessageOutputWindow::priorityInStatusBar() const
return -1;
}
bool MessageOutputWindow::canNext()
bool MessageOutputWindow::canNext() const
{
return false;
}
bool MessageOutputWindow::canPrevious()
bool MessageOutputWindow::canPrevious() const
{
return false;
}
@@ -115,7 +115,7 @@ void MessageOutputWindow::goToPrev()
}
bool MessageOutputWindow::canNavigate()
bool MessageOutputWindow::canNavigate() const
{
return false;
}