diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-16 10:31:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-16 11:59:51 +0100 |
commit | f9768de91e1d6e6c58cf8c09dd1a4dc23877c2ba (patch) | |
tree | ea9bc5ad2953a46836fced739cdbf227d65c602a /sc | |
parent | d70b46c163c9cf147fdf6aed1aa14fbde2fd2049 (diff) |
CID#1103764 uninitialized scalar field
Change-Id: I828ab50e11546ba5f183e27dbff8ba87827bb426
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/namebuff.hxx | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/sc/source/filter/inc/namebuff.hxx b/sc/source/filter/inc/namebuff.hxx index bb27605a1f0f..8c6c878afb0f 100644 --- a/sc/source/filter/inc/namebuff.hxx +++ b/sc/source/filter/inc/namebuff.hxx @@ -172,22 +172,24 @@ class RangeNameBufferWK3 { private: struct Entry - { + { StringHashEntry aStrHashEntry; ScComplexRefData aScComplexRefDataRel; OUString aScAbsName; sal_uInt16 nAbsInd; // == 0 -> noch keine Abs-Name! sal_uInt16 nRelInd; sal_Bool bSingleRef; - Entry( const OUString& rName, const OUString& rScName, const ScComplexRefData& rCRD ) : - aStrHashEntry( rName ), - aScComplexRefDataRel( rCRD ), - aScAbsName( rScName ) + Entry( const OUString& rName, const OUString& rScName, const ScComplexRefData& rCRD ) + : aStrHashEntry( rName ) + , aScComplexRefDataRel( rCRD ) + , aScAbsName( rScName ) + , nAbsInd(0) + , nRelInd(0) + , bSingleRef(false) { - nAbsInd = 0; aScAbsName = "_ABS"; } - }; + }; ScTokenArray* pScTokenArray; sal_uInt16 nIntCount; |