summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uui/source/interactionhandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/uui/source/interactionhandler.cxx b/uui/source/interactionhandler.cxx
index c45fb95f092d..b4384d573e38 100644
--- a/uui/source/interactionhandler.cxx
+++ b/uui/source/interactionhandler.cxx
@@ -70,7 +70,7 @@ public:
virtual sal_Bool SAL_CALL
handleInteractionRequest(
- const css::uno::Reference< css::task::XInteractionRequest >& _Request
+ const css::uno::Reference< css::task::XInteractionRequest >& Request
) throw ( css::uno::RuntimeException, std::exception ) override;
};
@@ -159,11 +159,11 @@ UUIInteractionHandler::handle(
}
sal_Bool SAL_CALL UUIInteractionHandler::handleInteractionRequest(
- const uno::Reference< task::XInteractionRequest >& _Request ) throw ( uno::RuntimeException, std::exception )
+ const uno::Reference< task::XInteractionRequest >& Request ) throw ( uno::RuntimeException, std::exception )
{
try
{
- return m_pImpl->handleRequest( _Request );
+ return m_pImpl->handleRequest( Request );
}
catch (uno::RuntimeException const & ex)
{