diff options
-rw-r--r-- | helpcompiler/inc/HelpLinker.hxx | 2 | ||||
-rw-r--r-- | helpcompiler/source/HelpLinker.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/helpcompiler/inc/HelpLinker.hxx b/helpcompiler/inc/HelpLinker.hxx index 1ba69500db2f..17e4fcdd25a0 100644 --- a/helpcompiler/inc/HelpLinker.hxx +++ b/helpcompiler/inc/HelpLinker.hxx @@ -53,7 +53,7 @@ public: std::string* pExtensionPath = NULL, std::string* pDestination = NULL, const OUString* pOfficeHelpPath = NULL ) - throw( HelpProcessingException ); + throw( HelpProcessingException, std::exception ); HelpLinker() : bExtensionMode(false) diff --git a/helpcompiler/source/HelpLinker.cxx b/helpcompiler/source/HelpLinker.cxx index 77202b98e11b..a977392de5ed 100644 --- a/helpcompiler/source/HelpLinker.cxx +++ b/helpcompiler/source/HelpLinker.cxx @@ -550,7 +550,7 @@ void HelpLinker::link() throw(HelpProcessingException, BasicCodeTagger::TaggerEx void HelpLinker::main( std::vector<std::string> &args, std::string* pExtensionPath, std::string* pDestination, const OUString* pOfficeHelpPath ) - throw( HelpProcessingException ) + throw( HelpProcessingException, std::exception ) { bExtensionMode = false; helpFiles.clear(); |