From f0f7507197b8c94d37f549ab4694628050100cf2 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Mon, 15 Sep 2003 10:03:17 +0000 Subject: [PATCH] Reorder member initializers to avoid compiler warning. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7747 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/ChangeLog | 5 +++++ src/bufferparams.C | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 7a6791f53c..fe0616a8c7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2003-09-15 Angus Leeming + + * bufferparams.C (BufferParams): reorder member initializers to avoid + compiler warning. + 2003-09-15 Alfredo Braunstein * CutAndPaste.C (pasteSelection): remove an outdated #warning diff --git a/src/bufferparams.C b/src/bufferparams.C index 9877d30f17..898412419a 100644 --- a/src/bufferparams.C +++ b/src/bufferparams.C @@ -80,12 +80,12 @@ BufferParams::Impl::Impl() BufferParams::BufferParams() - : pimpl_(new Impl), - // Initialize textclass to point to article. if `first' is + : // Initialize textclass to point to article. if `first' is // true in the returned pair, then `second' is the textclass // number; if it is false, second is 0. In both cases, second // is what we want. - textclass(textclasslist.NumberOfClass("article").second) + textclass(textclasslist.NumberOfClass("article").second), + pimpl_(new Impl) { paragraph_separation = PARSEP_INDENT; quotes_language = InsetQuotes::EnglishQ; -- 2.39.2