diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-01-22 13:39:32 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-01-25 12:31:39 +0100 |
commit | 0101cd3da6262169fa273309a86ba5e7cfe573bf (patch) | |
tree | 1d28b9f67e11fefe8eb251b6908a0b0f41575692 /desktop | |
parent | d6466c7e001acece5ce48092c73dfce5c1fa5684 (diff) |
desktop: use x prefix for uno::Reference
Change-Id: I737f648a638447f3038dcea526db7a3797b63c84
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/lokinteractionhandler.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/desktop/source/lib/lokinteractionhandler.cxx b/desktop/source/lib/lokinteractionhandler.cxx index 1d20b0219e28..713709459243 100644 --- a/desktop/source/lib/lokinteractionhandler.cxx +++ b/desktop/source/lib/lokinteractionhandler.cxx @@ -58,15 +58,19 @@ void SAL_CALL LOKInteractionHandler::initialize(uno::Sequence<uno::Any> const & { } -void SAL_CALL LOKInteractionHandler::handle(uno::Reference<task::XInteractionRequest> const & rRequest) throw (uno::RuntimeException, std::exception) +void SAL_CALL LOKInteractionHandler::handle( + uno::Reference<task::XInteractionRequest> const & xRequest) +throw (uno::RuntimeException, std::exception) { // just do the same thing in both cases - handleInteractionRequest(rRequest); + handleInteractionRequest(xRequest); } -sal_Bool SAL_CALL LOKInteractionHandler::handleInteractionRequest(const uno::Reference<task::XInteractionRequest >& rRequest) throw ( uno::RuntimeException, std::exception ) +sal_Bool SAL_CALL LOKInteractionHandler::handleInteractionRequest( + const uno::Reference<task::XInteractionRequest>& xRequest) +throw (uno::RuntimeException, std::exception) { - uno::Sequence<uno::Reference<task::XInteractionContinuation>> const &rContinuations = rRequest->getContinuations(); + uno::Sequence<uno::Reference<task::XInteractionContinuation>> const &rContinuations = xRequest->getContinuations(); // TODO: add LOK api that allows handling this for real, for the moment we // just set the interaction as 'Approved' |