diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 17:14:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 18:25:00 +0100 |
commit | 47e75e26ba853b72fb7fc60d7b8be62b6979fc2b (patch) | |
tree | cb6b10ab4995bb2b471caec881ce265ca37cc9cb /ucb | |
parent | 72e255336c361654663e0e477046c0f4debbfaae (diff) |
coverity#1308453 Uncaught exception
Change-Id: I1cb88324f582289cfb081907e22d1ee51a266445
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx index 72f2548ce5f4..579781995fa6 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx @@ -2719,7 +2719,7 @@ void Content::transfer( void Content::destroy( bool bDeletePhysical ) - throw( uno::Exception ) + throw( uno::Exception, std::exception ) { // @@@ take care about bDeletePhysical -> trashcan support uno::Reference< ucb::XContent > xThis = this; diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.hxx b/ucb/source/ucp/webdav-neon/webdavcontent.hxx index fffd0b526680..5b01882744cc 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.hxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.hxx @@ -175,7 +175,7 @@ private: // Command "delete" void destroy( bool bDeletePhysical ) - throw( ::com::sun::star::uno::Exception ); + throw( ::com::sun::star::uno::Exception, std::exception ); // Command "lock" void lock( const com::sun::star::uno::Reference< |