From 1bfa21f864004f32bcaf293c6210996453c524a7 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 15 Apr 2014 20:24:45 +0100 Subject: coverity#1202952 Uninitialized scalar field Change-Id: I83d861fa03afa6e6b6adcd5ca340c28ef8c6cfdf --- sd/source/core/CustomAnimationEffect.cxx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'sd') diff --git a/sd/source/core/CustomAnimationEffect.cxx b/sd/source/core/CustomAnimationEffect.cxx index 95b95343ca3c..503bdfd22188 100644 --- a/sd/source/core/CustomAnimationEffect.cxx +++ b/sd/source/core/CustomAnimationEffect.cxx @@ -2993,10 +2993,12 @@ void SAL_CALL AnimationChangeListener::disposing( const ::com::sun::star::lang:: } MainSequence::MainSequence() -: mxTimingRootNode( SequenceTimeContainer::create( ::comphelper::getProcessComponentContext() ) ) -, mbRebuilding( false ) -, mnRebuildLockGuard( 0 ) -, mbPendingRebuildRequest( false ) + : mxTimingRootNode(SequenceTimeContainer::create(::comphelper::getProcessComponentContext())) + , mbTimerMode(false) + , mbRebuilding( false ) + , mnRebuildLockGuard( 0 ) + , mbPendingRebuildRequest( false ) + , mbIgnoreChanges( 0 ) { if( mxTimingRootNode.is() ) { -- cgit