summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2009-02-12 08:49:30 +0000
committerRüdiger Timm <rt@openoffice.org>2009-02-12 08:49:30 +0000
commitf53e1b5c40e9a4674b035d11313c0ce77362fe07 (patch)
tree3ee9d38b7fadf6aa450dbab55d061a1a4fd94d19 /svtools
parente31a42e5df562ac981106bcdf00e0f26a6cb7a80 (diff)
#i10000# Fix potential build breaker: remove unused parameter.
Diffstat (limited to 'svtools')
-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 6b66c6dbb8b7..c4bc9c3f2d7f 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&)
{}