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

coverity#1202944 Uninitialized scalar field

Change-Id: Ibc9bdc30faae1cc72a39db3e8130dfaadf937e26
üst cd385f24
...@@ -130,6 +130,7 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe ...@@ -130,6 +130,7 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe
pUndoStack=NULL; pUndoStack=NULL;
pRedoStack=NULL; pRedoStack=NULL;
nMaxUndoCount=16; nMaxUndoCount=16;
mnUniqueCommentID=0;
pAktUndoGroup=NULL; pAktUndoGroup=NULL;
nUndoLevel=0; nUndoLevel=0;
mbUndoEnabled=true; mbUndoEnabled=true;
...@@ -163,6 +164,8 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe ...@@ -163,6 +164,8 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe
mbKernAsianPunctuation = false; mbKernAsianPunctuation = false;
mbAddExtLeading = false; mbAddExtLeading = false;
mnHandoutPageCount = 0; mnHandoutPageCount = 0;
nReserveUInt6 = 0;
nReserveUInt7 = 0;
mbDisableTextEditUsesCommonUndoManager = false; mbDisableTextEditUsesCommonUndoManager = 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