From 068d87a71115c1f2552b431c5e00ec3dd13d6c58 Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Mon, 7 Jun 2010 22:09:59 +0000 Subject: [PATCH] Constify GuiView::busy(). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34622 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiView.cpp | 2 +- src/frontends/qt4/GuiView.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 735919925f..37d7cf4437 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -1022,7 +1022,7 @@ bool GuiView::focusNextPrevChild(bool /*next*/) } -bool GuiView::busy() +bool GuiView::busy() const { return busy_; } diff --git a/src/frontends/qt4/GuiView.h b/src/frontends/qt4/GuiView.h index 72a53dbdc6..f1612b99d7 100644 --- a/src/frontends/qt4/GuiView.h +++ b/src/frontends/qt4/GuiView.h @@ -80,7 +80,7 @@ public: /// void setBusy(bool); /// are we busy ? - bool busy(); + bool busy() const; /// \name Generic accessor functions //@{ -- 2.39.2