diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-29 16:00:37 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-29 16:41:35 +0000 |
commit | 3784decc976e54f3fafa5c4a11e43f5becee61d4 (patch) | |
tree | 96575aa612f87b033e8c2b9412a669c92e4c7b26 /sc/inc | |
parent | aa19046e3b72e0298b493f04dc1641079915ede2 (diff) |
coverity#737711 Uncaught exception
Change-Id: Ie33feecf4116d15c500d104ec0787d496d532710
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/viewuno.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/inc/viewuno.hxx b/sc/inc/viewuno.hxx index 25f55765e0bb..ac7bf1a7b3b3 100644 --- a/sc/inc/viewuno.hxx +++ b/sc/inc/viewuno.hxx @@ -395,7 +395,9 @@ public: throw(::com::sun::star::uno::RuntimeException); // XTransferableSupplier - virtual ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable > SAL_CALL getTransferable( ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable > SAL_CALL getTransferable() + throw (::com::sun::star::uno::RuntimeException, + std::exception); virtual void SAL_CALL insertTransferable( const ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable >& xTrans ) throw(::com::sun::star::datatransfer::UnsupportedFlavorException, ::com::sun::star::uno::RuntimeException, |