initialize boundary

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10241 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-07-16 14:35:33 +00:00
parent 627b8df878
commit cae1cb6830
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-07-16 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* dociterator.C (DocIterator): initialize boundary
2005-07-16 Juergen Vigna <jug@lyx.org>
* text2.C (getColumnNearX): Consider rows without trailing blank.

View File

@ -30,12 +30,12 @@ using std::endl;
// We could be able to get rid of this if only every BufferView were
// associated to a buffer on construction.
DocIterator::DocIterator()
: inset_(0)
: inset_(0), boundary_(false)
{}
DocIterator::DocIterator(InsetBase & inset)
: inset_(&inset)
: inset_(&inset), boundary_(false)
{}