summaryrefslogtreecommitdiff
path: root/sfx2/source/notify
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-02-13 13:28:30 +0200
committerTor Lillqvist <tml@iki.fi>2012-02-13 13:34:04 +0200
commiteb676d0a9c6ce1d6fc50a595f3353f60d377e507 (patch)
tree20df742328a7d2b6aa5c3470c05184eb44aa6dbc /sfx2/source/notify
parentc3b59c3da7bf9e13a07620987aa85b633c7ec9c8 (diff)
WaE: unreferenced local variable
Diffstat (limited to 'sfx2/source/notify')
-rw-r--r--sfx2/source/notify/eventsupplier.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/notify/eventsupplier.cxx b/sfx2/source/notify/eventsupplier.cxx
index c5a6d6b1d6ac..1af00d5b7b96 100644
--- a/sfx2/source/notify/eventsupplier.cxx
+++ b/sfx2/source/notify/eventsupplier.cxx
@@ -810,7 +810,7 @@ void SfxGlobalEvents_Impl::implts_notifyJobExecution(const css::document::EventO
if (xJobExecutor.is())
xJobExecutor->notifyEvent(aEvent);
}
- catch(const css::uno::RuntimeException& exRun)
+ catch(const css::uno::RuntimeException&)
{ throw; }
catch(const css::uno::Exception&)
{}
@@ -832,7 +832,7 @@ void SfxGlobalEvents_Impl::implts_checkAndExecuteEventBindings(const css::docume
aAny = xEvents->getByName(aEvent.EventName);
Execute(aAny, aEvent, 0);
}
- catch(const css::uno::RuntimeException& exRun)
+ catch(const css::uno::RuntimeException&)
{ throw; }
catch(const css::uno::Exception&)
{}