mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 22:17:41 +00:00
initialize boundary
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10241 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
627b8df878
commit
cae1cb6830
@ -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>
|
2005-07-16 Juergen Vigna <jug@lyx.org>
|
||||||
|
|
||||||
* text2.C (getColumnNearX): Consider rows without trailing blank.
|
* text2.C (getColumnNearX): Consider rows without trailing blank.
|
||||||
|
@ -30,12 +30,12 @@ using std::endl;
|
|||||||
// We could be able to get rid of this if only every BufferView were
|
// We could be able to get rid of this if only every BufferView were
|
||||||
// associated to a buffer on construction.
|
// associated to a buffer on construction.
|
||||||
DocIterator::DocIterator()
|
DocIterator::DocIterator()
|
||||||
: inset_(0)
|
: inset_(0), boundary_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
DocIterator::DocIterator(InsetBase & inset)
|
DocIterator::DocIterator(InsetBase & inset)
|
||||||
: inset_(&inset)
|
: inset_(&inset), boundary_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user