summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-16 20:58:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-22 10:12:02 +0200
commit7e7bef2748c100aed9ec98fbceb8608fc2906ef2 (patch)
tree02b6067a1fb9994cd3f47fd48780e2a92b4956a6 /uui
parentff1356ab02a79b47e2b39f57f2a0864334deb5a2 (diff)
Avoid reserved identifier
Change-Id: I3dde927ee22032e0f516df16a7f9921ccb3cca7f
Diffstat (limited to 'uui')
-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)
{