diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 20:25:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:10 +0100 |
commit | 07b9e2fade19600aeb1021818aeb9fbd6387abdd (patch) | |
tree | d94974bba476d32d6d48bc5901c706030fd5225c /sd/source | |
parent | 1bfa21f864004f32bcaf293c6210996453c524a7 (diff) |
coverity#1202951 Uninitialized scalar field
Change-Id: I309ea6c881ffb6902750ed3cb4fba1c4bc8e6975
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/core/CustomAnimationEffect.cxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sd/source/core/CustomAnimationEffect.cxx b/sd/source/core/CustomAnimationEffect.cxx index 503bdfd22188..801eed4a5e87 100644 --- a/sd/source/core/CustomAnimationEffect.cxx +++ b/sd/source/core/CustomAnimationEffect.cxx @@ -3011,11 +3011,12 @@ MainSequence::MainSequence() } MainSequence::MainSequence( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) -: mxTimingRootNode( xNode, UNO_QUERY ) -, mbRebuilding( false ) -, mnRebuildLockGuard( 0 ) -, mbPendingRebuildRequest( false ) -, mbIgnoreChanges( 0 ) + : mxTimingRootNode( xNode, UNO_QUERY ) + , mbTimerMode( false ) + , mbRebuilding( false ) + , mnRebuildLockGuard( 0 ) + , mbPendingRebuildRequest( false ) + , mbIgnoreChanges( 0 ) { init(); } |