summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-02-02 22:53:48 +0100
committerJulien Nabet <serval2412@yahoo.fr>2012-02-02 22:55:17 +0100
commitf58c49b39a7c6a8490033360f78768ee0a26f167 (patch)
treed73b74cdf77c81c6b310c66dff100d5e7a66e432 /svx
parentbeccf7c9dd4966347fa31e11922fd73bd40dfeb9 (diff)
Some cppcheck cleaning
Diffstat (limited to 'svx')
-rw-r--r--svx/source/unodraw/unoshcol.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/unoshcol.cxx b/svx/source/unodraw/unoshcol.cxx
index 868688765e38..1e02c9cbdad9 100644
--- a/svx/source/unodraw/unoshcol.cxx
+++ b/svx/source/unodraw/unoshcol.cxx
@@ -137,14 +137,14 @@ void SvxShapeCollection::dispose()
// notify subclasses to do their dispose
disposing();
}
- catch(const ::com::sun::star::uno::Exception& e)
+ catch(const ::com::sun::star::uno::Exception&)
{
// catch exception and throw again but signal that
// the object was disposed. Dispose should be called
// only once.
mrBHelper.bDisposed = sal_True;
mrBHelper.bInDispose = sal_False;
- throw e;
+ throw;
}
// the values bDispose and bInDisposing must set in this order.