[Libreoffice-commits] core.git: uui/source

Stephan Bergmann sbergman at redhat.com
Fri Apr 22 08:13:09 UTC 2016


 uui/source/interactionhandler.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 7e7bef2748c100aed9ec98fbceb8608fc2906ef2
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Sat Apr 16 20:58:18 2016 +0200

    Avoid reserved identifier
    
    Change-Id: I3dde927ee22032e0f516df16a7f9921ccb3cca7f

diff --git a/uui/source/interactionhandler.cxx b/uui/source/interactionhandler.cxx
index c45fb95..b4384d5 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)
     {


More information about the Libreoffice-commits mailing list