diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-09-04 09:45:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-04 10:48:32 +0100 |
commit | 8de4c7363197c6d4017ff978ff363ff5a75b1bf1 (patch) | |
tree | 51b6df462d150d9827dc36beed63752b946e1238 /sw/inc/unotext.hxx | |
parent | 742060f74ad8249e8412af5e6562d958a1d8d4cd (diff) |
coverity#983958 Uncaught exception
Change-Id: Idd9c2dcfbeceb3519b1632a2f9b2651c73451061
Diffstat (limited to 'sw/inc/unotext.hxx')
-rw-r--r-- | sw/inc/unotext.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sw/inc/unotext.hxx b/sw/inc/unotext.hxx index d7457a4c409a..69490db383c6 100644 --- a/sw/inc/unotext.hxx +++ b/sw/inc/unotext.hxx @@ -228,8 +228,10 @@ public: const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rCharacterAndParagraphProperties) - throw (::com::sun::star::lang::IllegalArgumentException, - ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::lang::IllegalArgumentException, + css::beans::UnknownPropertyException, + css::beans::PropertyVetoException, + css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > SAL_CALL @@ -243,6 +245,7 @@ public: rTextRange) throw (css::lang::IllegalArgumentException, css::beans::UnknownPropertyException, + css::beans::PropertyVetoException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; |