summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-24 16:49:18 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-24 21:20:18 +0200
commit66e4c16f138e0b1c2c0f06613f6f23d834104343 (patch)
tree312f5baf4d9bcefe280091ac2ecaf1c84d7993e1
parent9d0b6931572362c1771aac98fae5cc50ef901bb2 (diff)
cppcheck: catchExceptionByValue
Change-Id: Idbb7a68a9517270325fd9ec34c14d663573318ac
-rw-r--r--sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx b/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx
index 6d2609353c7a..4e3c8db27f57 100644
--- a/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx
+++ b/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx
@@ -1002,7 +1002,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessibleSpreadsheet::getAccessibleAtP
try{
xAccessible = getAccessibleCellAt(nY, nX);
}
- catch( ::com::sun::star::lang::IndexOutOfBoundsException e)
+ catch(const ::com::sun::star::lang::IndexOutOfBoundsException &)
{
return NULL;
}