summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-20 11:16:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-20 13:05:02 +0200
commitff6e8c73adef7c86db12287948025954a4fc7746 (patch)
treeebd53edfbd8e6349b0dab9a92cedb9968a2454c9 /sd/source/ui/framework
parentb2423a480785db6f4883d6314690b22b69d55c22 (diff)
loplugin:constvars in sccomp..sd
Change-Id: Ic4b2a1d23da80a5b0976692f490c29a7169be3ef Reviewed-on: https://gerrit.libreoffice.org/77793 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/framework')
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationUpdater.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx b/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx
index 9ed25ff10af5..bb490c9b91df 100644
--- a/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx
+++ b/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx
@@ -201,7 +201,7 @@ void ConfigurationUpdater::CleanRequestedConfiguration()
{
Reference<XConfigurationController> xCC (
mxControllerManager->getConfigurationController());
- for (auto& rxId : aResourcesToDeactivate)
+ for (const auto& rxId : aResourcesToDeactivate)
if (rxId.is())
xCC->requestResourceDeactivation(rxId);
}