diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 13:12:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 13:47:03 +0100 |
commit | bf39758029a34c1ed2fc3cd43be46600b8f8b8cd (patch) | |
tree | eda3afa03b2e691a93c1a2e99cf462f49ee753d5 /sd | |
parent | f0efb472b17d1e9dfcbd673b847e6ff65c37d6dc (diff) |
coverity#708123 Uninitialized scalar field
Change-Id: I3161342b7033e376ef3fb49ffd63b4577ef18811
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/pptx-text.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sd/source/filter/eppt/pptx-text.cxx b/sd/source/filter/eppt/pptx-text.cxx index aed6c619d2b7..83448fb931af 100644 --- a/sd/source/filter/eppt/pptx-text.cxx +++ b/sd/source/filter/eppt/pptx-text.cxx @@ -1206,6 +1206,16 @@ void ParagraphObj::ImplGetParagraphValues( PPTExBulletProvider& rBuProv, sal_Boo void ParagraphObj::ImplConstruct( const ParagraphObj& rParagraphObj ) { + mbIsBullet = rParagraphObj.mbIsBullet; + meBullet = rParagraphObj.meBullet; + meTextAdjust = rParagraphObj.meTextAdjust; + meLineSpacing = rParagraphObj.meLineSpacing; + meLineSpacingTop = rParagraphObj.meLineSpacingTop; + meLineSpacingBottom = rParagraphObj.meLineSpacingBottom; + meForbiddenRules = rParagraphObj.meForbiddenRules; + meParagraphPunctation = rParagraphObj.meParagraphPunctation; + meBiDi =rParagraphObj.meBiDi; + mbFixedLineSpacing = rParagraphObj.mbFixedLineSpacing; mnTextSize = rParagraphObj.mnTextSize; mnTextAdjust = rParagraphObj.mnTextAdjust; mnLineSpacing = rParagraphObj.mnLineSpacing; |