cid#706965 Uncaught exception

Change-Id: I8e21e567459d39b454264603ca8e6a4d5cd79356
This commit is contained in:
Noel Grandin
2014-05-27 10:25:28 +02:00
parent 31bc94719d
commit a6e2a8f737
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ using namespace ::ooo::vba;
using namespace ::com::sun::star;
ScVbaHyperlink::ScVbaHyperlink( const uno::Sequence< uno::Any >& rArgs,
const uno::Reference< uno::XComponentContext >& rxContext ) throw (lang::IllegalArgumentException) :
const uno::Reference< uno::XComponentContext >& rxContext ) throw (lang::IllegalArgumentException, uno::RuntimeException) :
HyperlinkImpl_BASE( getXSomethingFromArgs< XHelperInterface >( rArgs, 0 ), rxContext ),
mxCell( getXSomethingFromArgs< table::XCell >( rArgs, 1, false ) ),
mnType( office::MsoHyperlinkType::msoHyperlinkRange )

View File

@@ -34,7 +34,7 @@ class ScVbaHyperlink : public HyperlinkImpl_BASE
public:
ScVbaHyperlink(
const css::uno::Sequence< css::uno::Any >& rArgs,
const css::uno::Reference< css::uno::XComponentContext >& rxContext ) throw (css::lang::IllegalArgumentException);
const css::uno::Reference< css::uno::XComponentContext >& rxContext ) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException);
ScVbaHyperlink(
const css::uno::Reference< ov::XHelperInterface >& rxAnchor,