diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-03 10:16:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-03 12:49:39 +0100 |
commit | 6fb1f934d79fd04bc3ca36b446adad0b126e6b1c (patch) | |
tree | 6edb205008437cd69c9d28710e8173d2c699af12 /oovbaapi/ooo/vba | |
parent | f9ac8942478221569740c32f35e1e0509f8fb95f (diff) |
coverity#707193 Uncaught exception
Change-Id: Ie3e6bc593365311bfe80972b26d1189acbb6afcb
Diffstat (limited to 'oovbaapi/ooo/vba')
-rw-r--r-- | oovbaapi/ooo/vba/XCollection.idl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/oovbaapi/ooo/vba/XCollection.idl b/oovbaapi/ooo/vba/XCollection.idl index a2d3ad24d813..6c9aa3039993 100644 --- a/oovbaapi/ooo/vba/XCollection.idl +++ b/oovbaapi/ooo/vba/XCollection.idl @@ -36,7 +36,9 @@ interface XCollection [attribute, readonly] long Count; - any Item( [in] any Index1, [in] any Index2 ) raises(com::sun::star::script::BasicErrorException); + any Item( [in] any Index1, [in] any Index2 ) + raises (com::sun::star::lang::IndexOutOfBoundsException, + com::sun::star::script::BasicErrorException); }; }; }; |