summaryrefslogtreecommitdiff
path: root/include/vbahelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-24 10:56:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-24 11:09:59 +0100
commitcc44da64b109ec9b1fe9393a19ac18c57d9e3217 (patch)
tree72ba1c51625402dc354497e193fcb7ecec880306 /include/vbahelper
parent371046c6a35931e96506ecaf4ffbc0403286c53b (diff)
coverity#707479 Uncaught exception
Change-Id: I4a1c43dab2814ed66f1785b91ead76407e32de46
Diffstat (limited to 'include/vbahelper')
-rw-r--r--include/vbahelper/vbashape.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vbahelper/vbashape.hxx b/include/vbahelper/vbashape.hxx
index 3069fa6941c2..1625f36fcc91 100644
--- a/include/vbahelper/vbashape.hxx
+++ b/include/vbahelper/vbashape.hxx
@@ -52,7 +52,8 @@ protected:
virtual OUString getServiceImplName() SAL_OVERRIDE;
virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE;
public:
- ScVbaShape( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::drawing::XShape >& xShape, const css::uno::Reference< css::drawing::XShapes >& xShapes, const css::uno::Reference< css::frame::XModel >& xModel, sal_Int32 nType ) throw ( css::lang::IllegalArgumentException );
+ ScVbaShape( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::drawing::XShape >& xShape, const css::uno::Reference< css::drawing::XShapes >& xShapes, const css::uno::Reference< css::frame::XModel >& xModel, sal_Int32 nType )
+ throw (css::lang::IllegalArgumentException, css::uno::RuntimeException);
virtual ~ScVbaShape();
css::uno::Any getRange() { return m_aRange; };
void setRange( css::uno::Any aRange ) { m_aRange = aRange; };