From eb676d0a9c6ce1d6fc50a595f3353f60d377e507 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 13 Feb 2012 13:28:30 +0200 Subject: WaE: unreferenced local variable --- sfx2/source/notify/eventsupplier.cxx | 4 ++-- sfx2/source/view/ipclient.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sfx2') 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&) {} diff --git a/sfx2/source/view/ipclient.cxx b/sfx2/source/view/ipclient.cxx index ac7dea2116e6..3dbacca32ecf 100644 --- a/sfx2/source/view/ipclient.cxx +++ b/sfx2/source/view/ipclient.cxx @@ -279,7 +279,7 @@ void SAL_CALL SfxInPlaceClient_Impl::saveObject() xStatusIndicator = xStatusIndicatorFactory->createStatusIndicator(); xPropSet->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "IndicatorInterception" )), uno::makeAny( xStatusIndicator )); } - catch ( const uno::RuntimeException& e ) + catch ( const uno::RuntimeException& ) { throw; } @@ -309,7 +309,7 @@ void SAL_CALL SfxInPlaceClient_Impl::saveObject() xPropSet->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "IndicatorInterception" )), uno::makeAny( xStatusIndicator )); } } - catch ( const uno::RuntimeException& e ) + catch ( const uno::RuntimeException& ) { throw; } -- cgit