summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-09-04 09:45:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-09-04 10:48:32 +0100
commit8de4c7363197c6d4017ff978ff363ff5a75b1bf1 (patch)
tree51b6df462d150d9827dc36beed63752b946e1238 /offapi
parent742060f74ad8249e8412af5e6562d958a1d8d4cd (diff)
coverity#983958 Uncaught exception
Change-Id: Idd9c2dcfbeceb3519b1632a2f9b2651c73451061
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/text/XTextPortionAppend.idl8
1 files changed, 5 insertions, 3 deletions
diff --git a/offapi/com/sun/star/text/XTextPortionAppend.idl b/offapi/com/sun/star/text/XTextPortionAppend.idl
index b15ade7dd4e3..8930ab89773d 100644
--- a/offapi/com/sun/star/text/XTextPortionAppend.idl
+++ b/offapi/com/sun/star/text/XTextPortionAppend.idl
@@ -22,8 +22,8 @@
#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/UnknownPropertyException.idl>
+#include <com/sun/star/beans/PropertyVetoException,idl>
#include <com/sun/star/text/XTextRange.idl>
@@ -51,7 +51,8 @@ interface XTextPortionAppend : com::sun::star::uno::XInterface
[in] string Text,
[in] com::sun::star::beans::PropertyValues CharacterAndParagraphProperties )
raises( com::sun::star::lang::IllegalArgumentException,
- com::sun::star::beans::UnknownPropertyException );
+ com::sun::star::beans::UnknownPropertyException,
+ com::sun::star::beans::PropertyVetoException );
/** inserts a new text portion to the paragraph at a given position.
@@ -76,7 +77,8 @@ interface XTextPortionAppend : com::sun::star::uno::XInterface
[in] com::sun::star::beans::PropertyValues CharacterAndParagraphProperties,
[in] com::sun::star::text::XTextRange TextRange)
raises( com::sun::star::lang::IllegalArgumentException,
- com::sun::star::beans::UnknownPropertyException );
+ com::sun::star::beans::UnknownPropertyException,
+ com::sun::star::beans::PropertyVetoException );
};