diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 20:24:45 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:10 +0100 |
commit | 1bfa21f864004f32bcaf293c6210996453c524a7 (patch) | |
tree | d87486b10ae2bd6c7ce072d2de7b16cdf4545e98 | |
parent | aebeb43d0ea3920e49119fc406fdd61d851b6208 (diff) |
coverity#1202952 Uninitialized scalar field
Change-Id: I83d861fa03afa6e6b6adcd5ca340c28ef8c6cfdf
-rw-r--r-- | sd/source/core/CustomAnimationEffect.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
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() ) { |