small build fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1602 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-02-22 15:07:07 +00:00
parent 00b4a7ba8a
commit bac36b3e80
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-02-22 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* insetcollapsable.C (getLyXText): add const qualifier to second
parameter.
2001-02-22 Juergen Vigna <jug@sad.it>
* insettext.C (getLyXText): honor the recursive parameter.

View File

@ -441,7 +441,8 @@ bool InsetCollapsable::doClearArea() const
}
LyXText * InsetCollapsable::getLyXText(BufferView const * bv, bool recursive) const
LyXText * InsetCollapsable::getLyXText(BufferView const * bv,
bool const recursive) const
{
return inset->getLyXText(bv, recursive);
}