summaryrefslogtreecommitdiff
path: root/svtools/source/misc/acceleratorexecute.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-02 22:29:22 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-02 22:29:22 +0200
commit349475566f2b8ffe191f6ed673f01b19bc0c9166 (patch)
treee41460cac6b10e830dac29cb57335a2cdf734d49 /svtools/source/misc/acceleratorexecute.cxx
parent25f90ea26caaccda60cc25a62b20c5645772df5e (diff)
loplugin:casttovoid: svtools
Change-Id: Iae781dd1f303b905653ccd1e113cfdbb7145819e
Diffstat (limited to 'svtools/source/misc/acceleratorexecute.cxx')
-rw-r--r--svtools/source/misc/acceleratorexecute.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/misc/acceleratorexecute.cxx b/svtools/source/misc/acceleratorexecute.cxx
index 207e9d4448b8..3d2bca6a156c 100644
--- a/svtools/source/misc/acceleratorexecute.cxx
+++ b/svtools/source/misc/acceleratorexecute.cxx
@@ -374,8 +374,8 @@ css::uno::Reference< css::ui::XAcceleratorConfiguration > AcceleratorExecute::st
{
sModule = xModuleDetection->identify(xFrame);
}
- catch(const css::uno::RuntimeException&rEx)
- { (void) rEx; throw; }
+ catch(const css::uno::RuntimeException&)
+ { throw; }
catch(const css::uno::Exception&)
{ return css::uno::Reference< css::ui::XAcceleratorConfiguration >(); }