Fix more member variable initialization order warnings from gcc.

Does nobody care about this???



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15604 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-10-29 16:16:00 +00:00
parent 1440f02a84
commit 7fd7b25a3c
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ T * getInsetByCode(LCursor & cur, InsetBase::Code code)
BufferView::BufferView()
: buffer_(0), wh_(0), width_(0), height_(0),
: width_(0), height_(0), buffer_(0), wh_(0),
cursor_(*this),
multiparsel_cache_(false), anchor_ref_(0), offset_ref_(0),
intl_(new Intl)

View File

@ -72,7 +72,7 @@ namespace frontend {
WorkArea::WorkArea(int id, LyXView & lyx_view)
: buffer_view_(0), lyx_view_(lyx_view), greyed_out_(true),
cursor_visible_(false), cursor_timeout_(400), id_(id)
id_(id), cursor_visible_(false), cursor_timeout_(400)
{
// Start loading the pixmap as soon as possible
//if (lyxrc.show_banner) {