diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-08 14:22:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-08 14:25:23 +0100 |
commit | 856583492785d3c332f5ad4092a8196d590f930b (patch) | |
tree | b8878f3f23d61fa4eb0f739f5fbdb1755272e43c | |
parent | ca55180d74d9e6f40071f453c4b0280ae768e5a0 (diff) |
coverity#1311333 Uncaught exception
Change-Id: I692712d7a5a84efdec383c5d1ec7bd492a2e1aca
-rw-r--r-- | sc/source/ui/vba/vbarange.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx index ef83faeb0853..dc5b1f28cf74 100644 --- a/sc/source/ui/vba/vbarange.cxx +++ b/sc/source/ui/vba/vbarange.cxx @@ -1235,7 +1235,7 @@ bool getScRangeListForAddress( const OUString& sName, ScDocShell* pDocSh, ScRang } ScVbaRange* -getRangeForName( const uno::Reference< uno::XComponentContext >& xContext, const OUString& sName, ScDocShell* pDocSh, table::CellRangeAddress& pAddr, formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_XL_A1 ) throw ( uno::RuntimeException ) +getRangeForName( const uno::Reference< uno::XComponentContext >& xContext, const OUString& sName, ScDocShell* pDocSh, table::CellRangeAddress& pAddr, formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_XL_A1 ) throw ( uno::RuntimeException, std::exception ) { ScRangeList aCellRanges; ScRange refRange; |