Kaydet (Commit) 4d192098 authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#1079305 uninitialized members

Change-Id: I00d716a0f05d50fd7a7a1c43772af51224a6b15a
üst 009ddaf7
...@@ -103,7 +103,17 @@ void SfxProgress_Impl::Enable_Impl( sal_Bool bEnable ) ...@@ -103,7 +103,17 @@ void SfxProgress_Impl::Enable_Impl( sal_Bool bEnable )
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
SfxProgress_Impl::SfxProgress_Impl( const OUString &/*rTitle*/ ) SfxProgress_Impl::SfxProgress_Impl( const OUString &/*rTitle*/ )
: pActiveProgress(0), pWorkWin(0), pView(0) : nMax(0)
, nCreate(0)
, nNextReschedule(0)
, bLocked(false)
, bAllDocs(false)
, bWaitMode(false)
, bAllowRescheduling(false)
, bRunning(false)
, pActiveProgress(0)
, pWorkWin(0)
, pView(0)
{ {
} }
......
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