From b0e3e11c263eb41054643bc34a1de3816444951a Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 2 Oct 2014 16:51:24 +0100 Subject: coverity#1242532 Arguments in wrong order I don't think this actually matters Change-Id: Ia7190f436eeb47888b1aace1391cf0b5aef9f9f0 --- sw/source/filter/ww8/ww8par5.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sw/source/filter/ww8/ww8par5.cxx b/sw/source/filter/ww8/ww8par5.cxx index 40c6fee0cfa3..7c1887fd1481 100644 --- a/sw/source/filter/ww8/ww8par5.cxx +++ b/sw/source/filter/ww8/ww8par5.cxx @@ -2214,11 +2214,11 @@ eF_ResT SwWW8ImplReader::Read_F_Macro( WW8FieldDesc*, OUString& rStr) WW8PostProcessAttrsInfo::WW8PostProcessAttrsInfo(WW8_CP nCpStart, WW8_CP nCpEnd, SwPaM & rPaM) -: mbCopy(false), - mnCpStart(nCpStart), - mnCpEnd(nCpEnd), - mPaM(*rPaM.GetPoint(), *rPaM.GetMark()), - mItemSet(rPaM.GetDoc()->GetAttrPool(), RES_CHRATR_BEGIN, RES_PARATR_END - 1) + : mbCopy(false) + , mnCpStart(nCpStart) + , mnCpEnd(nCpEnd) + , mPaM(*rPaM.GetMark(), *rPaM.GetPoint()) + , mItemSet(rPaM.GetDoc()->GetAttrPool(), RES_CHRATR_BEGIN, RES_PARATR_END - 1) { } -- cgit