From 9bf01f2b34631bd4300c476ce0a2c7fdc846f763 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 29 Jun 2006 14:52:48 +0000 Subject: [PATCH] initialize correctly multiparsel_cache_ (may fix bug 2630); fix warning about initialization order git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14264 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/BufferView_pimpl.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BufferView_pimpl.C b/src/BufferView_pimpl.C index 7f7f4efaf3..b4ed4db808 100644 --- a/src/BufferView_pimpl.C +++ b/src/BufferView_pimpl.C @@ -138,9 +138,9 @@ T * getInsetByCode(LCursor & cur, InsetBase::Code code) BufferView::Pimpl::Pimpl(BufferView & bv, LyXView * owner, WorkArea * workArea) - : bv_(&bv), owner_(owner), workArea_(workArea), buffer_(0), wh_(0), cursor_timeout(400), - using_xterm_cursor(false), cursor_(bv), - anchor_ref_(0), offset_ref_(0) + : bv_(&bv), owner_(owner), buffer_(0), wh_(0), cursor_timeout(400), + using_xterm_cursor(false), workArea_(workArea), cursor_(bv), + multiparsel_cache_(false), anchor_ref_(0), offset_ref_(0) { xsel_cache_.set = false;