summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorNoel <noel.grandin@collabora.co.uk>2021-02-16 12:57:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-02-16 20:18:01 +0100
commitdfe8ec631426bf317209723c956d373ac146058e (patch)
treec5cdc431847c56eb922f5ebfdb272cab021f5b83 /stoc
parent9bd827270646be509060ddb92be4eae20b277b91 (diff)
loplugin:referencecasting in stoc..svtools
Change-Id: I806ffb3ab06731c61fe9c58788aabf00a05e980f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110987 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/javavm/javavm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx
index 1b7a86e712ec..19bce9f5f2cd 100644
--- a/stoc/source/javavm/javavm.cxx
+++ b/stoc/source/javavm/javavm.cxx
@@ -137,7 +137,7 @@ bool askForRetry(css::uno::Any const & rException)
{
rtl::Reference< stoc_javavm::InteractionRequest > xRequest(
new stoc_javavm::InteractionRequest(rException));
- xHandler->handle(xRequest.get());
+ xHandler->handle(xRequest);
return xRequest->retry();
}
}