diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-01-28 13:24:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-01-28 13:25:41 +0000 |
commit | 2f564d09c5d3aff0767f3c3f3e525cf34076cff3 (patch) | |
tree | 68314ff3d65929115d0244f49ac68a5e4592c499 /sc/source/ui/inc/imoptdlg.hxx | |
parent | 3003c27d87c6ad47ed9cadb1f574882c530522b1 (diff) |
coverity#1428661 Uninitialized scalar field
Change-Id: Ie0578786fdd167e1ec8dd581f656bfcbbb3c2a58
Diffstat (limited to 'sc/source/ui/inc/imoptdlg.hxx')
-rw-r--r-- | sc/source/ui/inc/imoptdlg.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/inc/imoptdlg.hxx b/sc/source/ui/inc/imoptdlg.hxx index 8722b6b3466f..4bdbbbb0750f 100644 --- a/sc/source/ui/inc/imoptdlg.hxx +++ b/sc/source/ui/inc/imoptdlg.hxx @@ -36,7 +36,8 @@ public: ScImportOptions( sal_Unicode nFieldSep, sal_Unicode nTextSep, rtl_TextEncoding nEnc ) : nFieldSepCode(nFieldSep), nTextSepCode(nTextSep), - bFixedWidth(false), bSaveAsShown(false), bQuoteAllText(false), bSaveFormulas(false) + bFixedWidth(false), bSaveAsShown(false), bQuoteAllText(false), bSaveFormulas(false), + bRemoveSpace(false) { SetTextEncoding( nEnc ); } ScImportOptions& operator=( const ScImportOptions& rCpy ) |