summaryrefslogtreecommitdiff
path: root/xmloff/source/draw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 11:42:53 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 12:40:35 +0000
commit94c87ec911ebcc1ed90b6aabe8854ff77f8a4ed0 (patch)
tree2c2cb37d5364f84b4c60ebffaae1fe477b9135b4 /xmloff/source/draw
parent25f5b28f2748405b39238da8cbc19a043c79e09f (diff)
coverity#708704 Uninitialized scalar field
Change-Id: I135988584eb00e891bbc6410f3cf80f955f046ec
Diffstat (limited to 'xmloff/source/draw')
-rw-r--r--xmloff/source/draw/eventimp.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/xmloff/source/draw/eventimp.cxx b/xmloff/source/draw/eventimp.cxx
index 9e82d81f59d0..3de70c97a674 100644
--- a/xmloff/source/draw/eventimp.cxx
+++ b/xmloff/source/draw/eventimp.cxx
@@ -150,10 +150,11 @@ XMLEventSoundContext::~XMLEventSoundContext()
TYPEINIT1( SdXMLEventContext, SvXMLImportContext );
SdXMLEventContext::SdXMLEventContext( SvXMLImport& rImp, sal_uInt16 nPrfx, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList, const Reference< XShape >& rxShape )
-: SvXMLImportContext(rImp, nPrfx, rLocalName),
- mxShape( rxShape ), mbScript( sal_False ), meClickAction( ClickAction_NONE ),
- meEffect( EK_none ), meDirection( ED_none ), mnStartScale( 100 ),
- meSpeed( AnimationSpeed_MEDIUM ), mnVerb(0), mbPlayFull( sal_False )
+ : SvXMLImportContext(rImp, nPrfx, rLocalName)
+ , mxShape(rxShape), mbValid(false), mbScript(sal_False)
+ , meClickAction(ClickAction_NONE), meEffect(EK_none)
+ , meDirection(ED_none), mnStartScale(100), meSpeed(AnimationSpeed_MEDIUM)
+ , mnVerb(0), mbPlayFull(sal_False)
{
static const OUString sXMLClickName( "click" );