From 7fd7b25a3cd399513e812c6f6737d7efe00bd5f6 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Sun, 29 Oct 2006 16:16:00 +0000 Subject: [PATCH] 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 --- src/BufferView.C | 2 +- src/frontends/WorkArea.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BufferView.C b/src/BufferView.C index a24a6229a8..605f19b0ff 100644 --- a/src/BufferView.C +++ b/src/BufferView.C @@ -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) diff --git a/src/frontends/WorkArea.C b/src/frontends/WorkArea.C index aa52291811..debb9d852c 100644 --- a/src/frontends/WorkArea.C +++ b/src/frontends/WorkArea.C @@ -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) { -- 2.39.2