diff options
Diffstat (limited to 'helpcompiler')
-rw-r--r-- | helpcompiler/inc/HelpLinker.hxx | 8 |
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; |