From 5a526f9196a8aeb527a2fc6d7c081812770c28be Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 15 Aug 2019 11:26:29 +0200 Subject: loplugin:sequenceloop dbaccess..extensions Change-Id: I0eb33a8e293eb8afd0cf5a933384c44e023a2e6b Reviewed-on: https://gerrit.libreoffice.org/77498 Tested-by: Jenkins Reviewed-by: Noel Grandin --- desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'desktop/source/pkgchk/unopkg') diff --git a/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx b/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx index c17e2ccbb9d1..fb04a35bccda 100644 --- a/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx +++ b/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx @@ -280,7 +280,8 @@ void CommandEnvironmentImpl::handle( } // select: - for ( auto const& rCont : xRequest->getContinuations() ) + const css::uno::Sequence> xIC = xRequest->getContinuations(); + for ( auto const& rCont : xIC ) { if (approve) { Reference xInteractionApprove( -- cgit