Constify GuiView::busy().

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34622 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2010-06-07 22:09:59 +00:00
parent a26a9be9bc
commit 068d87a711
2 changed files with 2 additions and 2 deletions

View File

@ -1022,7 +1022,7 @@ bool GuiView::focusNextPrevChild(bool /*next*/)
}
bool GuiView::busy()
bool GuiView::busy() const
{
return busy_;
}

View File

@ -80,7 +80,7 @@ public:
///
void setBusy(bool);
/// are we busy ?
bool busy();
bool busy() const;
/// \name Generic accessor functions
//@{