diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 20:33:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:11 +0100 |
commit | 804597191bc70be080be59f093e96b2cda37e6a9 (patch) | |
tree | bf4817b2411a31bc6bf8f1bc410ce6e2f56d9573 /svx | |
parent | cd385f2480b3fbcdffde8d111961f154137294e1 (diff) |
coverity#1202944 Uninitialized scalar field
Change-Id: Ibc9bdc30faae1cc72a39db3e8130dfaadf937e26
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdmodel.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx index 29c13a34edaf..3e854af2e784 100644 --- a/svx/source/svdraw/svdmodel.cxx +++ b/svx/source/svdraw/svdmodel.cxx @@ -130,6 +130,7 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe pUndoStack=NULL; pRedoStack=NULL; nMaxUndoCount=16; + mnUniqueCommentID=0; pAktUndoGroup=NULL; nUndoLevel=0; mbUndoEnabled=true; @@ -163,6 +164,8 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe mbKernAsianPunctuation = false; mbAddExtLeading = false; mnHandoutPageCount = 0; + nReserveUInt6 = 0; + nReserveUInt7 = 0; mbDisableTextEditUsesCommonUndoManager = false; |