summaryrefslogtreecommitdiff
path: root/helpcompiler
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-11 12:40:54 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-11 14:33:34 +0000
commitfeaa2f675adca31a6bcd00231ed75ffed1791165 (patch)
tree4d86ca3860b729c9fd697d2dfa897182574039b5 /helpcompiler
parenta0d5d57386f4c5ebf940d77b490b987c63a36c07 (diff)
coverity#707948 Uninitialized scalar field
Change-Id: I254c5695f1a80eba8a90421da3417969b3e0e8f8
Diffstat (limited to 'helpcompiler')
-rw-r--r--helpcompiler/inc/HelpLinker.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/helpcompiler/inc/HelpLinker.hxx b/helpcompiler/inc/HelpLinker.hxx
index 4cafeec706c8..6f2d818d6f44 100644
--- a/helpcompiler/inc/HelpLinker.hxx
+++ b/helpcompiler/inc/HelpLinker.hxx
@@ -53,16 +53,18 @@ public:
std::string* pExtensionPath = NULL,
std::string* pDestination = NULL,
const OUString* pOfficeHelpPath = NULL )
-
throw( HelpProcessingException );
HelpLinker()
- : m_pIndexerPreProcessor(NULL)
+ : bExtensionMode(false)
+ , m_pIndexerPreProcessor(NULL)
, m_bUseLangRoot(true)
, m_bCreateIndex(true)
{}
~HelpLinker()
- { delete m_pIndexerPreProcessor; }
+ {
+ delete m_pIndexerPreProcessor;
+ }
private:
Stringtable additionalFiles;