diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-13 13:09:44 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-13 14:56:20 +0000 |
commit | 2d72cfb5027bdab62ca4b509dd4aa1397bf56bf0 (patch) | |
tree | 9c450ec7e28605a870847b82a3a47a3a0b930606 /forms | |
parent | beb0a165ec7577c0012b6d183f1046cd7cfb3026 (diff) |
coverity#737151 Uncaught exception
Change-Id: I133012cf88020e38eb0fc0932979347b996943fe
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/richtext/richtextcontrol.cxx | 4 | ||||
-rw-r--r-- | forms/source/richtext/richtextcontrol.hxx | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx index aa89f898be4a..80cae8b7f1ad 100644 --- a/forms/source/richtext/richtextcontrol.cxx +++ b/forms/source/richtext/richtextcontrol.cxx @@ -392,7 +392,9 @@ namespace frm } //-------------------------------------------------------------------- - void SAL_CALL ORichTextPeer::setProperty( const OUString& _rPropertyName, const Any& _rValue ) throw (RuntimeException) + void SAL_CALL ORichTextPeer::setProperty( const OUString& _rPropertyName, const Any& _rValue ) + throw (RuntimeException, + std::exception) { if ( !GetWindow() ) { diff --git a/forms/source/richtext/richtextcontrol.hxx b/forms/source/richtext/richtextcontrol.hxx index 5888deff7792..fb1a1f669384 100644 --- a/forms/source/richtext/richtextcontrol.hxx +++ b/forms/source/richtext/richtextcontrol.hxx @@ -119,7 +119,9 @@ namespace frm void SAL_CALL draw( sal_Int32 nX, sal_Int32 nY ) throw(::com::sun::star::uno::RuntimeException); // XVclWindowPeer - virtual void SAL_CALL setProperty( const OUString& _rPropertyName, const ::com::sun::star::uno::Any& _rValue ) throw (::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL setProperty( const OUString& _rPropertyName, const ::com::sun::star::uno::Any& _rValue ) + throw (::com::sun::star::uno::RuntimeException, + std::exception); // XTypeProvider DECLARE_XTYPEPROVIDER( ) |