diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 12:56:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 13:47:02 +0100 |
commit | 61a7ece840d55bdf667421a8058e720c82f447ae (patch) | |
tree | 47c85de8061d06ea9715da5c8754784637968f4b | |
parent | 67b3a972836f7b29f24d0615d2758ff4089b8e9c (diff) |
coverity#708120 Uninitialized scalar field
Change-Id: I097d0bc2df695df0e3d170efc0bee39f8b00a954
-rw-r--r-- | sd/source/filter/eppt/pptx-text.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sd/source/filter/eppt/pptx-text.cxx b/sd/source/filter/eppt/pptx-text.cxx index 2a2dc41d0687..136bb897ebdc 100644 --- a/sd/source/filter/eppt/pptx-text.cxx +++ b/sd/source/filter/eppt/pptx-text.cxx @@ -429,6 +429,14 @@ void PortionObj::ImplClear() void PortionObj::ImplConstruct( const PortionObj& rPortionObj ) { + meCharColor = rPortionObj.meCharColor; + meCharHeight = rPortionObj.meCharHeight; + meFontName = rPortionObj.meFontName; + meAsianOrComplexFont = rPortionObj.meAsianOrComplexFont; + meCharEscapement = rPortionObj.meCharEscapement; + meCharLocale = rPortionObj.meCharLocale; + mnCharAttrHard = rPortionObj.mnCharAttrHard; + mbLastPortion = rPortionObj.mbLastPortion; mnTextSize = rPortionObj.mnTextSize; mnCharColor = rPortionObj.mnCharColor; |