diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-27 12:04:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-28 10:00:53 +0200 |
commit | f58a218f7111fa4b5ab6c6a2b827ee64258dcd37 (patch) | |
tree | df62fb42f357afc46a95e4d4be7a87bb1d6e6722 /sc | |
parent | 19c0d7ba5f726c3ccfa7e7075f9e7a66b59cd6db (diff) |
cid#706954 Uncaught exception
Change-Id: I81b8b6775a3475309696fe78b2db842cda330904
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/vba/vbaeventshelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbaeventshelper.cxx b/sc/source/ui/vba/vbaeventshelper.cxx index 607a1cba58ca..9b6ef3dcd680 100644 --- a/sc/source/ui/vba/vbaeventshelper.cxx +++ b/sc/source/ui/vba/vbaeventshelper.cxx @@ -51,7 +51,7 @@ namespace { /** Extracts a sheet index from the specified element of the passed sequence. The element may be an integer, a Calc range or ranges object, or a VBA Range object. */ -SCTAB lclGetTabFromArgs( const uno::Sequence< uno::Any >& rArgs, sal_Int32 nIndex ) throw (lang::IllegalArgumentException) +SCTAB lclGetTabFromArgs( const uno::Sequence< uno::Any >& rArgs, sal_Int32 nIndex ) throw (lang::IllegalArgumentException, uno::RuntimeException) { VbaEventsHelperBase::checkArgument( rArgs, nIndex ); |