diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 20:14:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 13:22:55 +0100 |
commit | 8db808c5003cd10a87b99cbdb193171ce8d0869c (patch) | |
tree | 90970634fd42c86df0248084406f282d6249ee6d /ucb | |
parent | 445d2283cd954f48d011a9a53b07ecd6964d6dc8 (diff) |
coverity#1308481 Uncaught exception
Change-Id: Ieb1796d1da5b887f7d0d5748007cc581c3d287d7
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_content.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_content.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_content.cxx b/ucb/source/ucp/tdoc/tdoc_content.cxx index a1523b527496..c85c29080887 100644 --- a/ucb/source/ucp/tdoc/tdoc_content.cxx +++ b/ucb/source/ucp/tdoc/tdoc_content.cxx @@ -1125,7 +1125,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues( uno::Sequence< uno::Any > Content::setPropertyValues( const uno::Sequence< beans::PropertyValue >& rValues, const uno::Reference< ucb::XCommandEnvironment > & xEnv ) - throw( uno::Exception ) + throw( uno::Exception, std::exception ) { osl::ClearableGuard< osl::Mutex > aGuard( m_aMutex ); diff --git a/ucb/source/ucp/tdoc/tdoc_content.hxx b/ucb/source/ucp/tdoc/tdoc_content.hxx index 21bdc0c604c2..108b0753f701 100644 --- a/ucb/source/ucp/tdoc/tdoc_content.hxx +++ b/ucb/source/ucp/tdoc/tdoc_content.hxx @@ -175,7 +175,7 @@ private: ::com::sun::star::beans::PropertyValue >& rValues, const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XCommandEnvironment > & xEnv ) - throw( ::com::sun::star::uno::Exception ); + throw( ::com::sun::star::uno::Exception, std::exception ); com::sun::star::uno::Any open( const ::com::sun::star::ucb::OpenCommandArgument2& rArg, |