diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-08 14:23:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-08 14:25:24 +0100 |
commit | 6793eaa4fa77292b23e9b86221e598f438d45b8e (patch) | |
tree | 404cb24e9ed2923dffcfae04a83257619c45f121 /sc | |
parent | 1e40c6459fd0dd64cd27c7b2ffc093045cdbe78d (diff) |
coverity#1311335 Uncaught exception
Change-Id: Idd654a49457c89598e45e0eb17336297b6745703
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/vba/vbaapplication.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbaapplication.cxx b/sc/source/ui/vba/vbaapplication.cxx index f1cf9fc3d3a0..2135014028ea 100644 --- a/sc/source/ui/vba/vbaapplication.cxx +++ b/sc/source/ui/vba/vbaapplication.cxx @@ -1066,7 +1066,7 @@ void lclIntersectRanges( ListOfScRange& rList, const uno::Any& rArg ) uno::Reference< excel::XRange > lclCreateVbaRange( const uno::Reference< uno::XComponentContext >& rxContext, const uno::Reference< frame::XModel >& rxModel, - const ListOfScRange& rList ) throw (uno::RuntimeException) + const ListOfScRange& rList ) throw (uno::RuntimeException, std::exception) { ScDocShell* pDocShell = excel::getDocShell( rxModel ); if( !pDocShell ) throw uno::RuntimeException(); |