diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-22 09:00:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-22 11:39:19 +0100 |
commit | 626bd1dc06c82f78b5195f20694ae6741380f594 (patch) | |
tree | 05b00ca801e5a5b651a0a021935f3f2b2757686a | |
parent | d361293f3cfc6725b7589dd900bb1e1ed1ec422f (diff) |
coverity#708109 Uninitialized scalar field
Change-Id: I013b8b45751ec8a604fb9df941813e283e3b8b45
-rw-r--r-- | sc/source/ui/view/viewdata.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx index a619eb9cc51a..7609820be70e 100644 --- a/sc/source/ui/view/viewdata.cxx +++ b/sc/source/ui/view/viewdata.cxx @@ -308,6 +308,16 @@ ScViewData::ScViewData( ScDocShell* pDocSh, ScTabViewShell* pViewSh ) : eRefType ( SC_REFTYPE_NONE ), nTabNo ( 0 ), nRefTabNo ( 0 ), + nRefStartX(0), + nRefStartY(0), + nRefStartZ(0), + nRefEndX(0), + nRefEndY(0), + nRefEndZ(0), + nFillStartX(0), + nFillStartY(0), + nFillEndX(0), + nFillEndY(0), nPasteFlags ( SC_PASTE_NONE ), eEditActivePart( SC_SPLIT_BOTTOMLEFT ), nFillMode ( SC_FILL_NONE ), |