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:
@@ -57,15 +57,15 @@ public:
|
||||
void visibilityChanged(bool visible);
|
||||
|
||||
void append(const QString &text);
|
||||
bool canFocus();
|
||||
bool hasFocus();
|
||||
bool canFocus() const;
|
||||
bool hasFocus() const;
|
||||
void setFocus();
|
||||
|
||||
virtual bool canNext();
|
||||
virtual bool canPrevious();
|
||||
virtual bool canNext() const;
|
||||
virtual bool canPrevious() const;
|
||||
virtual void goToNext();
|
||||
virtual void goToPrev();
|
||||
bool canNavigate();
|
||||
bool canNavigate() const;
|
||||
|
||||
private:
|
||||
OutputWindow *m_widget;
|
||||
|
||||
Reference in New Issue
Block a user