diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-24 11:04:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-24 11:10:00 +0100 |
commit | 4d225d3e7f3dbbb463fd0229f3e6403407e34f62 (patch) | |
tree | a8f8e2ec9da24bfa3de68ff81c515c033f469a3b /vbahelper | |
parent | b6804259c5664f1d749717cf270ccb80ddfd2f41 (diff) |
coverity#707477 Uncaught exception
Change-Id: Ie91515b0cd0fcf5a1b3bc7b2d394927dafa851ea
Diffstat (limited to 'vbahelper')
-rw-r--r-- | vbahelper/source/vbahelper/vbashape.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vbahelper/source/vbahelper/vbashape.cxx b/vbahelper/source/vbahelper/vbashape.cxx index 03c611e1012f..062f5613bb6e 100644 --- a/vbahelper/source/vbahelper/vbashape.cxx +++ b/vbahelper/source/vbahelper/vbashape.cxx @@ -205,7 +205,8 @@ ScVbaShape::getWidth() throw (uno::RuntimeException, std::exception) } void SAL_CALL -ScVbaShape::setWidth( double _width ) throw (uno::RuntimeException, std::exception) +ScVbaShape::setWidth(double _width) + throw (css::script::BasicErrorException, uno::RuntimeException, std::exception) { m_pShapeHelper->setWidth( _width ); } |