summaryrefslogtreecommitdiff
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
parentc3b59c3da7bf9e13a07620987aa85b633c7ec9c8 (diff)
WaE: unreferenced local variable
-rw-r--r--sfx2/source/notify/eventsupplier.cxx4
-rw-r--r--sfx2/source/view/ipclient.cxx4
2 files changed, 4 insertions, 4 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&)
{}
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;
}