diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-09-04 09:49:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-04 10:48:32 +0100 |
commit | d47678c990681d0cfc7f2c843bb9aedaeb08511a (patch) | |
tree | a5fb66ffa498ecf357113688f887bead0c8ad854 /offapi | |
parent | 8de4c7363197c6d4017ff978ff363ff5a75b1bf1 (diff) |
coverity#707311 Uncaught exception
Change-Id: Ifdab456cb545e552a2efaed03ff00aeac874d47d
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/XTextConvert.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/offapi/com/sun/star/text/XTextConvert.idl b/offapi/com/sun/star/text/XTextConvert.idl index b707489abcfb..2de810cf503b 100644 --- a/offapi/com/sun/star/text/XTextConvert.idl +++ b/offapi/com/sun/star/text/XTextConvert.idl @@ -22,7 +22,7 @@ #include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/beans/PropertyValues.idl> #include <com/sun/star/lang/IllegalArgumentException.idl> - +#include <com/sun/star/beans/PropertyVetoException,idl> #include <com/sun/star/beans/UnknownPropertyException.idl> #include <com/sun/star/text/XTextRange.idl> #include <com/sun/star/text/XTextContent.idl> @@ -57,7 +57,8 @@ interface XTextConvert : com::sun::star::uno::XInterface [in] com::sun::star::text::XTextRange End, [in] com::sun::star::beans::PropertyValues FrameProperties ) raises( com::sun::star::lang::IllegalArgumentException, - com::sun::star::beans::UnknownPropertyException ); + com::sun::star::beans::UnknownPropertyException, + com::sun::star::beans::PropertyVetoException ); /** converts the paragraphs marked in TableRanges into a table. |