diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-28 09:40:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-28 10:31:04 +0100 |
commit | 64bc19eeb569d3bbb040dc9650b15476386c0e80 (patch) | |
tree | 2b8e0015c567ca6e1acd529f32a632d74c522dad | |
parent | c68d420614a1512ac3dd663f80c8559e3228a4e6 (diff) |
coverity#708052 Uninitialized scalar field
Change-Id: I6ef481d08d357d62e1a7931b2f43fb7cb5b55b7c
-rw-r--r-- | sc/source/filter/inc/lotrange.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/filter/inc/lotrange.hxx b/sc/source/filter/inc/lotrange.hxx index 8e3c9328385a..f7c42b078907 100644 --- a/sc/source/filter/inc/lotrange.hxx +++ b/sc/source/filter/inc/lotrange.hxx @@ -53,10 +53,12 @@ public: inline void LotusRange::Copy( const LotusRange& rCpy ) { + nHash = rCpy.nHash; nColStart = rCpy.nColStart; nRowStart = rCpy.nRowStart; nColEnd = rCpy.nColEnd; nRowEnd = rCpy.nRowEnd; + nId = rCpy.nId; } inline void LotusRange::SetId( LR_ID nNewId ) |