diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-11-06 09:35:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-06 12:15:53 +0000 |
commit | 9ca5df186e890971f36bf85e9a8870503c922d37 (patch) | |
tree | 596a547b65d98e29db5bb16eda589437bc7d8d24 /vbahelper | |
parent | 8a6d8f11f8411f156f8a281d44241760dbca2f5f (diff) |
coverity#1338249 Uncaught exception
Change-Id: Ife52263b250e11720575cec800834f7608f25d6c
Diffstat (limited to 'vbahelper')
-rw-r--r-- | vbahelper/source/vbahelper/vbadocumentsbase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/vbahelper/vbadocumentsbase.cxx b/vbahelper/source/vbahelper/vbadocumentsbase.cxx index 82dbb2ab8136..f83f54912d47 100644 --- a/vbahelper/source/vbahelper/vbadocumentsbase.cxx +++ b/vbahelper/source/vbahelper/vbadocumentsbase.cxx @@ -123,7 +123,7 @@ class DocumentsAccessImpl : public DocumentsAccessImpl_BASE NameIndexHash namesToIndices; VbaDocumentsBase::DOCUMENT_TYPE meDocType; public: - DocumentsAccessImpl( const uno::Reference< uno::XComponentContext >& xContext, VbaDocumentsBase::DOCUMENT_TYPE eDocType ) throw (uno::RuntimeException) :m_xContext( xContext ), meDocType( eDocType ) + DocumentsAccessImpl( const uno::Reference< uno::XComponentContext >& xContext, VbaDocumentsBase::DOCUMENT_TYPE eDocType ) throw (uno::RuntimeException, std::exception) :m_xContext( xContext ), meDocType( eDocType ) { uno::Reference< container::XEnumeration > xEnum = new DocumentsEnumImpl( m_xContext ); sal_Int32 nIndex=0; |