Kaydet (Commit) b0e3e11c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1242532 Arguments in wrong order

I don't think this actually matters

Change-Id: Ia7190f436eeb47888b1aace1391cf0b5aef9f9f0
üst 7f5ed822
......@@ -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)
{
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment