diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-09 15:59:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-09 15:59:16 +0100 |
commit | 500532cdc12689a3eb29d56a3c96515d6a152ab3 (patch) | |
tree | f200483285b4207741ac8f290837f0b3937c1b5e /sc/source/ui/view | |
parent | f867d3c306e82164ea143d8303dd4c9c79411c93 (diff) |
coverity#708101 Uninitialized scalar field
Change-Id: I9eff260046a08890629b41188082f196d547c734
Diffstat (limited to 'sc/source/ui/view')
-rw-r--r-- | sc/source/ui/view/output.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx index 9e329ebb5421..a804f91f114d 100644 --- a/sc/source/ui/view/output.cxx +++ b/sc/source/ui/view/output.cxx @@ -168,6 +168,8 @@ ScOutputData::ScOutputData( OutputDevice* pNewDev, ScOutputType eNewType, pViewShell( NULL ), pDrawView( NULL ), // #114135# bEditMode( false ), + nEditCol( 0 ), + nEditRow( 0 ), bMetaFile( false ), bSingleGrid( false ), bPagebreakMode( false ), |