Kaydet (Commit) 1bfa21f8 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1202952 Uninitialized scalar field

Change-Id: I83d861fa03afa6e6b6adcd5ca340c28ef8c6cfdf
üst aebeb43d
...@@ -2993,10 +2993,12 @@ void SAL_CALL AnimationChangeListener::disposing( const ::com::sun::star::lang:: ...@@ -2993,10 +2993,12 @@ void SAL_CALL AnimationChangeListener::disposing( const ::com::sun::star::lang::
} }
MainSequence::MainSequence() MainSequence::MainSequence()
: mxTimingRootNode( SequenceTimeContainer::create( ::comphelper::getProcessComponentContext() ) ) : mxTimingRootNode(SequenceTimeContainer::create(::comphelper::getProcessComponentContext()))
, mbRebuilding( false ) , mbTimerMode(false)
, mnRebuildLockGuard( 0 ) , mbRebuilding( false )
, mbPendingRebuildRequest( false ) , mnRebuildLockGuard( 0 )
, mbPendingRebuildRequest( false )
, mbIgnoreChanges( 0 )
{ {
if( mxTimingRootNode.is() ) if( mxTimingRootNode.is() )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment