diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-31 14:05:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 12:14:44 +0100 |
commit | d8463f95ea9b129ea64ea96a228abf4bc68557cf (patch) | |
tree | d0c81207b9a117656156baccae881d607c1ef73f /sc/source/ui | |
parent | 20df064c7d0efd653bb0c3a7c5174485ed9f2176 (diff) |
catch by const
Change-Id: I4d51552a28ecd169a03e6c3dad992c9b2217dc74
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/vba/vbaaxis.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbaaxis.cxx b/sc/source/ui/vba/vbaaxis.cxx index a7779b3e77d7..b7baad87a4f2 100644 --- a/sc/source/ui/vba/vbaaxis.cxx +++ b/sc/source/ui/vba/vbaaxis.cxx @@ -141,7 +141,7 @@ ScVbaAxis::setCrosses( ::sal_Int32 _nCrosses ) throw (script::BasicErrorExceptio } mxPropertySet->setPropertyValue(AUTOORIGIN, uno::makeAny(false) ); } - catch (uno::Exception& ) + catch (const uno::Exception&) { DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString()); } |