From 373d51a1ed5cc4bb1de8e648e232598c0e3ced54 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 27 Sep 2011 13:47:06 +0200 Subject: IOutputPane: constify some member functions Change-Id: I023b7f5976b30fc950d2dd5a76f749ef4720ac2f Reviewed-on: http://codereview.qt-project.org/5618 Reviewed-by: Eike Ziller --- src/plugins/projectexplorer/appoutputpane.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/plugins/projectexplorer/appoutputpane.h') diff --git a/src/plugins/projectexplorer/appoutputpane.h b/src/plugins/projectexplorer/appoutputpane.h index 5dafaa6494..397bc02dd0 100644 --- a/src/plugins/projectexplorer/appoutputpane.h +++ b/src/plugins/projectexplorer/appoutputpane.h @@ -63,20 +63,20 @@ public: virtual ~AppOutputPane(); QWidget *outputWidget(QWidget *); - QList toolBarWidgets() const; + QList toolBarWidgets() const; QString displayName() const; int priorityInStatusBar() const; void clearContents(); void visibilityChanged(bool); - bool canFocus(); - bool hasFocus(); + bool canFocus() const; + bool hasFocus() const; void setFocus(); - bool canNext(); - bool canPrevious(); + bool canNext() const; + bool canPrevious() const; void goToNext(); void goToPrev(); - bool canNavigate(); + bool canNavigate() const; void createNewOutputWindow(RunControl *rc); void showTabFor(RunControl *rc); -- cgit v1.2.1