mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
fix init order
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10277 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4126b3f828
commit
a97c06ef62
@ -1,3 +1,7 @@
|
||||
2005-07-17 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* dociterator.C (DocIterator): fix initialization order
|
||||
|
||||
2005-07-17 Juergen Vigna <jug@lyx.org>
|
||||
|
||||
* text2.C (cursorHome):
|
||||
|
@ -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), boundary_(false)
|
||||
: boundary_(false), inset_(0)
|
||||
{}
|
||||
|
||||
|
||||
DocIterator::DocIterator(InsetBase & inset)
|
||||
: inset_(&inset), boundary_(false)
|
||||
: boundary_(false), inset_(&inset)
|
||||
{}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user