diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-31 14:50:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 12:14:48 +0100 |
commit | 9ed8e1f19c3d9cffc1052350a5854c3097639874 (patch) | |
tree | ca87aa3918f6c0ed6bd298c04f2175d88eb31991 /oovbaapi | |
parent | 62962557bacb6f90c9c23ec787fe83e0b0ea35fa (diff) |
coverity#707409 Uncaught exception
Change-Id: I0f19cd6411c7008a4698fc81fd2ce9c4108ce8eb
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/word/XView.idl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/oovbaapi/ooo/vba/word/XView.idl b/oovbaapi/ooo/vba/word/XView.idl index d33cc7833a4f..788aa3d48e8b 100644 --- a/oovbaapi/ooo/vba/word/XView.idl +++ b/oovbaapi/ooo/vba/word/XView.idl @@ -20,6 +20,7 @@ #define __ooo_vba_word_XView_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 { @@ -28,7 +29,11 @@ interface XView { interface ooo::vba::XHelperInterface; - [attribute] long SeekView; + [attribute] long SeekView + { + set raises ( com::sun::star::script::BasicErrorException ); + }; + [attribute] long SplitSpecial; [attribute] boolean TableGridLines; [attribute] long Type; |