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:
Lars Gullik Bjønnes 2005-07-17 12:26:25 +00:00
parent 4126b3f828
commit a97c06ef62
2 changed files with 6 additions and 2 deletions

View File

@ -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):

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), boundary_(false)
: boundary_(false), inset_(0)
{}
DocIterator::DocIterator(InsetBase & inset)
: inset_(&inset), boundary_(false)
: boundary_(false), inset_(&inset)
{}