summaryrefslogtreecommitdiff
path: root/sd/source/core
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-15 20:25:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-16 11:23:10 +0100
commit07b9e2fade19600aeb1021818aeb9fbd6387abdd (patch)
treed94974bba476d32d6d48bc5901c706030fd5225c /sd/source/core
parent1bfa21f864004f32bcaf293c6210996453c524a7 (diff)
coverity#1202951 Uninitialized scalar field
Change-Id: I309ea6c881ffb6902750ed3cb4fba1c4bc8e6975
Diffstat (limited to 'sd/source/core')
-rw-r--r--sd/source/core/CustomAnimationEffect.cxx11
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();
}