Kaydet (Commit) feaa2f67 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707948 Uninitialized scalar field

Change-Id: I254c5695f1a80eba8a90421da3417969b3e0e8f8
üst a0d5d573
...@@ -53,16 +53,18 @@ public: ...@@ -53,16 +53,18 @@ public:
std::string* pExtensionPath = NULL, std::string* pExtensionPath = NULL,
std::string* pDestination = NULL, std::string* pDestination = NULL,
const OUString* pOfficeHelpPath = NULL ) const OUString* pOfficeHelpPath = NULL )
throw( HelpProcessingException ); throw( HelpProcessingException );
HelpLinker() HelpLinker()
: m_pIndexerPreProcessor(NULL) : bExtensionMode(false)
, m_pIndexerPreProcessor(NULL)
, m_bUseLangRoot(true) , m_bUseLangRoot(true)
, m_bCreateIndex(true) , m_bCreateIndex(true)
{} {}
~HelpLinker() ~HelpLinker()
{ delete m_pIndexerPreProcessor; } {
delete m_pIndexerPreProcessor;
}
private: private:
Stringtable additionalFiles; Stringtable additionalFiles;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment