]> git.lyx.org Git - features.git/commitdiff
Constify GuiView::busy().
authorVincent van Ravesteijn <vfr@lyx.org>
Mon, 7 Jun 2010 22:09:59 +0000 (22:09 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Mon, 7 Jun 2010 22:09:59 +0000 (22:09 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34622 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiView.cpp
src/frontends/qt4/GuiView.h

index 735919925f16958a3631e00caf3ff359ee0ecd8d..37d7cf44372f50770afdbc5e3735248c83421af5 100644 (file)
@@ -1022,7 +1022,7 @@ bool GuiView::focusNextPrevChild(bool /*next*/)
 }
 
 
-bool GuiView::busy()
+bool GuiView::busy() const
 {
        return busy_;
 }
index 72a53dbdc6129b8796ca5a1fd20fe18dbc2c4708..f1612b99d7e4390c072846bd101801ec26e306f4 100644 (file)
@@ -80,7 +80,7 @@ public:
        ///
        void setBusy(bool);
        /// are we busy ?
-       bool busy();
+       bool busy() const;
 
        /// \name Generic accessor functions
        //@{