summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/imoptdlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-01-28 13:24:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-01-28 13:25:41 +0000
commit2f564d09c5d3aff0767f3c3f3e525cf34076cff3 (patch)
tree68314ff3d65929115d0244f49ac68a5e4592c499 /sc/source/ui/inc/imoptdlg.hxx
parent3003c27d87c6ad47ed9cadb1f574882c530522b1 (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.hxx3
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 )