summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-31 14:05:04 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-09-02 12:14:44 +0100
commitd8463f95ea9b129ea64ea96a228abf4bc68557cf (patch)
treed0c81207b9a117656156baccae881d607c1ef73f /sc
parent20df064c7d0efd653bb0c3a7c5174485ed9f2176 (diff)
catch by const
Change-Id: I4d51552a28ecd169a03e6c3dad992c9b2217dc74
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbaaxis.cxx2
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());
}