From: Vincent van Ravesteijn Date: Mon, 7 Jun 2010 22:09:59 +0000 (+0000) Subject: Constify GuiView::busy(). X-Git-Tag: 2.0.0~3157 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=068d87a71115c1f2552b431c5e00ec3dd13d6c58;p=lyx.git Constify GuiView::busy(). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34622 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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 //@{