Kaydet (Commit) 04148c6f authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#738831 Uninitialized pointer field

Change-Id: I9de07f4fe8b9919ec2a7e83019b5131647e552c1
üst e6b3ec87
...@@ -88,6 +88,11 @@ SfxAppData_Impl::SfxAppData_Impl( SfxApplication* ) ...@@ -88,6 +88,11 @@ SfxAppData_Impl::SfxAppData_Impl( SfxApplication* )
, pBasicResMgr( 0 ) , pBasicResMgr( 0 )
#endif #endif
, pSvtResMgr( 0 ) , pSvtResMgr( 0 )
, m_pToolsErrorHdl(0)
, m_pSoErrorHdl(0)
#ifndef DISABLE_SCRIPTING
, m_pSbxErrorHdl(0)
#endif
, pAppDispatch(NULL) , pAppDispatch(NULL)
, pTemplates( 0 ) , pTemplates( 0 )
, pPool(0) , pPool(0)
...@@ -102,7 +107,9 @@ SfxAppData_Impl::SfxAppData_Impl( SfxApplication* ) ...@@ -102,7 +107,9 @@ SfxAppData_Impl::SfxAppData_Impl( SfxApplication* )
, m_xImeStatusWindow(new sfx2::appl::ImeStatusWindow(comphelper::getProcessComponentContext())) , m_xImeStatusWindow(new sfx2::appl::ImeStatusWindow(comphelper::getProcessComponentContext()))
, pTbxCtrlFac(0) , pTbxCtrlFac(0)
, pStbCtrlFac(0) , pStbCtrlFac(0)
, pMenuCtrlFac(0)
, pViewFrames(0) , pViewFrames(0)
, pViewShells(0)
, pObjShells(0) , pObjShells(0)
, pSfxResManager(0) , pSfxResManager(0)
, pOfaResMgr(0) , pOfaResMgr(0)
...@@ -114,6 +121,7 @@ SfxAppData_Impl::SfxAppData_Impl( SfxApplication* ) ...@@ -114,6 +121,7 @@ SfxAppData_Impl::SfxAppData_Impl( SfxApplication* )
, pInterfaces( 0 ) , pInterfaces( 0 )
, nDocNo(0) , nDocNo(0)
, nInterfaces( 0 ) , nInterfaces( 0 )
, bDispatcherLocked( false )
, bDowning( true ) , bDowning( true )
, bInQuit( false ) , bInQuit( false )
, bInvalidateOnUnlock( false ) , bInvalidateOnUnlock( false )
......
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