mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
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:
parent
1440f02a84
commit
7fd7b25a3c
@ -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)
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user