diff options
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; |