summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-06 13:13:41 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-06 15:11:54 +0000
commitdb9f44dee33236f52b35f8f57df2273089e2b3b0 (patch)
treeccbc83fbb29f7070e1d89bc7a38b0ba405776dff /filter
parent48ca6aeda3d0122dc085de5801847afbb07039d5 (diff)
coverity#707789 Uninitialized scalar field
Change-Id: I4eb999220ca4e0134c15214504bd7c6e6e143479
Diffstat (limited to 'filter')
-rw-r--r--filter/source/flash/swfexporter.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/flash/swfexporter.hxx b/filter/source/flash/swfexporter.hxx
index 3c9cb7951821..67e5c1db3b2f 100644
--- a/filter/source/flash/swfexporter.hxx
+++ b/filter/source/flash/swfexporter.hxx
@@ -85,7 +85,7 @@ public:
sal_Int32 mnBlueScreenColor;
ShapeInfo() :
- mnID(0), mnX(0), mnY(0),
+ mnID(0), mnX(0), mnY(0), mnWidth(0), mnHeight(0),
meEffect( ::com::sun::star::presentation::AnimationEffect_NONE ),
meTextEffect( ::com::sun::star::presentation::AnimationEffect_NONE ),
meEffectSpeed( ::com::sun::star::presentation::AnimationSpeed_MEDIUM ),