summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-11-12 21:02:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-11-13 06:35:19 +0100
commita34d9e36193821fdbc8fb7d6b3527daf076b2069 (patch)
tree1dce27319e0701699013916758775b3b84b8b8a3 /include/test
parentec3850e661e40c146edd55c6ad1fce3996e421c4 (diff)
loplugin:reftotemp in scripting..uui
Change-Id: I6953958b4429dd0fa1a44d02b0b49618f97baf90 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176500 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/testinteractionhandler.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/test/testinteractionhandler.hxx b/include/test/testinteractionhandler.hxx
index 01a3726cf42d..b1851493efd0 100644
--- a/include/test/testinteractionhandler.hxx
+++ b/include/test/testinteractionhandler.hxx
@@ -76,13 +76,13 @@ public:
{
mbPasswordRequested = false;
- css::uno::Sequence<css::uno::Reference<css::task::XInteractionContinuation>> const &rContinuations = rRequest->getContinuations();
+ css::uno::Sequence<css::uno::Reference<css::task::XInteractionContinuation>> const aContinuations = rRequest->getContinuations();
css::uno::Any const aRequest(rRequest->getRequest());
- if (handlePasswordRequest(rContinuations, aRequest))
+ if (handlePasswordRequest(aContinuations, aRequest))
return true;
- for (auto const & cont : rContinuations)
+ for (auto const & cont : aContinuations)
{
css::uno::Reference<css::task::XInteractionApprove> xApprove(cont, css::uno::UNO_QUERY);
if (xApprove.is())