diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-31 14:58:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 12:14:48 +0100 |
commit | 3fa329f6108c47b9e86724ed2d6e7d294239107e (patch) | |
tree | be3f13b1128856ddc00464bb72c8728f89fc12ee /oovbaapi | |
parent | 9ed8e1f19c3d9cffc1052350a5854c3097639874 (diff) |
coverity#707382 Uncaught exception
Change-Id: Idad4fbff404c23b74a83c2d3e745363c52c3d90a
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/word/XParagraphFormat.idl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/oovbaapi/ooo/vba/word/XParagraphFormat.idl b/oovbaapi/ooo/vba/word/XParagraphFormat.idl index 693eb0ce3b52..61b9478a9fa1 100644 --- a/oovbaapi/ooo/vba/word/XParagraphFormat.idl +++ b/oovbaapi/ooo/vba/word/XParagraphFormat.idl @@ -20,16 +20,19 @@ #define __ooo_vba_word_XParagraphFormat_idl__ #include <com/sun/star/uno/XInterface.idl> +#include <com/sun/star/script/BasicErrorException.idl> #include <ooo/vba/XHelperInterface.idl> - module ooo { module vba { module word { interface XParagraphFormat { interface ooo::vba::XHelperInterface; - [attribute] long Alignment; + [attribute] long Alignment + { + get raises ( com::sun::star::script::BasicErrorException ); + }; [attribute] float FirstLineIndent; [attribute] any KeepTogether; [attribute] any KeepWithNext; |