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

coverity#1194889 Unchecked return value

Change-Id: Ibbca3f2e06cd3eb34dc5477c5dfe4261f4cc4a9a
üst ef4623bb
...@@ -111,7 +111,7 @@ SwFmt &SwFmt::operator=(const SwFmt& rFmt) ...@@ -111,7 +111,7 @@ SwFmt &SwFmt::operator=(const SwFmt& rFmt)
SwAttrSet aOld( *aSet.GetPool(), aSet.GetRanges() ), SwAttrSet aOld( *aSet.GetPool(), aSet.GetRanges() ),
aNew( *aSet.GetPool(), aSet.GetRanges() ); aNew( *aSet.GetPool(), aSet.GetRanges() );
aSet.Intersect_BC( rFmt.aSet, &aOld, &aNew ); aSet.Intersect_BC( rFmt.aSet, &aOld, &aNew );
aSet.Put_BC( rFmt.aSet, &aOld, &aNew ); (void)aSet.Put_BC( rFmt.aSet, &aOld, &aNew );
// a few special treatments for attributes // a few special treatments for attributes
aSet.SetModifyAtAttr( this ); aSet.SetModifyAtAttr( this );
......
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