diff options
author | Release Engineers <releng@openoffice.org> | 2009-02-12 08:32:53 +0000 |
---|---|---|
committer | Release Engineers <releng@openoffice.org> | 2009-02-12 08:32:53 +0000 |
commit | 05786d4f86f925fbabf376332e7eaf256e8a1457 (patch) | |
tree | 20997db5b51339db8a0cd3a27bd49b83481ae72d | |
parent | 82d4c3d0fdf99a4f505a11f4a4436de43b26fb49 (diff) |
#i10000# Fix potemtial build breaker: remove unused parameter
-rw-r--r-- | svtools/source/misc/acceleratorexecute.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/misc/acceleratorexecute.cxx b/svtools/source/misc/acceleratorexecute.cxx index cab65f941c..99a4738d91 100644 --- a/svtools/source/misc/acceleratorexecute.cxx +++ b/svtools/source/misc/acceleratorexecute.cxx @@ -465,7 +465,7 @@ css::uno::Reference< css::ui::XAcceleratorConfiguration > AcceleratorExecute::st { sModule = xModuleDetection->identify(xFrame); } - catch(const css::uno::RuntimeException& exRuntime) + catch(const css::uno::RuntimeException&) { throw; } catch(const css::uno::Exception&) { return css::uno::Reference< css::ui::XAcceleratorConfiguration >(); } @@ -560,7 +560,7 @@ IMPL_LINK(AsyncAccelExec, impl_ts_asyncCallback, void*,) } catch(const css::lang::DisposedException&) {} - catch(const css::uno::RuntimeException& exRuntime) + catch(const css::uno::RuntimeException&) { throw; } catch(const css::uno::Exception&) {} |