diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-20 09:31:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-20 12:40:57 +0200 |
commit | b2423a480785db6f4883d6314690b22b69d55c22 (patch) | |
tree | 52f00376acff4db0e2d522d1068d35a227836ad4 /framework/source | |
parent | 07f9223daae92ac11be2382ecd0095e744f5695f (diff) |
loplugin:constvars in drawinglayer..framework
Change-Id: I6e62229fdc38f49f766a306f5264afafe9acefa5
Reviewed-on: https://gerrit.libreoffice.org/77774
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/source')
-rw-r--r-- | framework/source/jobs/jobdispatch.cxx | 2 | ||||
-rw-r--r-- | framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx | 4 | ||||
-rw-r--r-- | framework/source/uiconfiguration/uiconfigurationmanager.cxx | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/framework/source/jobs/jobdispatch.cxx b/framework/source/jobs/jobdispatch.cxx index 0407f05591d3..2af4ea2b2c80 100644 --- a/framework/source/jobs/jobdispatch.cxx +++ b/framework/source/jobs/jobdispatch.cxx @@ -318,7 +318,7 @@ void JobDispatch::impl_dispatchEvent( /*IN*/ const OUString& // It's not really an error, if no registered jobs could be located. // Step over all found jobs and execute it int nExecutedJobs=0; - for (OUString & lJob : lJobs) + for (const OUString & lJob : lJobs) { /* SAFE { */ aReadLock.reset(); diff --git a/framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx b/framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx index 305cc8c08300..b629dbaefca3 100644 --- a/framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx +++ b/framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx @@ -1528,9 +1528,9 @@ void SAL_CALL ModuleUIConfigurationManager::reload() aGuard.clear(); // Notify our listeners - for (ui::ConfigurationEvent & j : aRemoveNotifyContainer) + for (const ui::ConfigurationEvent & j : aRemoveNotifyContainer) implts_notifyContainerListener( j, NotifyOp_Remove ); - for (ui::ConfigurationEvent & k : aReplaceNotifyContainer) + for (const ui::ConfigurationEvent & k : aReplaceNotifyContainer) implts_notifyContainerListener( k, NotifyOp_Replace ); } } diff --git a/framework/source/uiconfiguration/uiconfigurationmanager.cxx b/framework/source/uiconfiguration/uiconfigurationmanager.cxx index ef8015660cdb..01dcf13246c1 100644 --- a/framework/source/uiconfiguration/uiconfigurationmanager.cxx +++ b/framework/source/uiconfiguration/uiconfigurationmanager.cxx @@ -812,7 +812,7 @@ void SAL_CALL UIConfigurationManager::reset() aGuard.clear(); // Notify our listeners - for (ConfigurationEvent & k : aRemoveEventNotifyContainer) + for (const ConfigurationEvent & k : aRemoveEventNotifyContainer) implts_notifyContainerListener( k, NotifyOp_Remove ); } catch ( const css::lang::IllegalArgumentException& ) @@ -1253,9 +1253,9 @@ void SAL_CALL UIConfigurationManager::reload() aGuard.clear(); // Notify our listeners - for (ConfigurationEvent & j : aRemoveNotifyContainer) + for (const ConfigurationEvent & j : aRemoveNotifyContainer) implts_notifyContainerListener( j, NotifyOp_Remove ); - for (ConfigurationEvent & k : aReplaceNotifyContainer) + for (const ConfigurationEvent & k : aReplaceNotifyContainer) implts_notifyContainerListener( k, NotifyOp_Replace ); } } |