diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-15 13:12:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-15 20:22:51 +0200 |
commit | 56a9a3a2d7f64c277b3dadd5a910a1183a47ac69 (patch) | |
tree | ce7fda93df80dc857b67d12d4de6f263296b1492 /sfx2/source/view/sfxbasecontroller.cxx | |
parent | 2a6f30194afb745df7412b95b53f8165b237da71 (diff) |
loplugin:sequenceloop in sdext..sfx2
Change-Id: If9924566b21e50cad7a12d781ac5d337de0684ab
Reviewed-on: https://gerrit.libreoffice.org/77526
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/view/sfxbasecontroller.cxx')
-rw-r--r-- | sfx2/source/view/sfxbasecontroller.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/view/sfxbasecontroller.cxx b/sfx2/source/view/sfxbasecontroller.cxx index c5503a3c2aa5..956ce26fc4b4 100644 --- a/sfx2/source/view/sfxbasecontroller.cxx +++ b/sfx2/source/view/sfxbasecontroller.cxx @@ -1368,7 +1368,7 @@ void SfxBaseController::ShowInfoBars( ) if ( !xCmisDoc.is( ) || !xCmisDoc->canCheckOut( ) ) return; - uno::Sequence< document::CmisProperty> aCmisProperties = xCmisDoc->getCmisProperties( ); + const uno::Sequence< document::CmisProperty> aCmisProperties = xCmisDoc->getCmisProperties( ); if ( !(xCmisDoc->isVersionable( ) && aCmisProperties.hasElements( )) ) return; |