loplugin:sequenceloop in shell..sot

Change-Id: I40e2a1be0ce7df627d3820192d24821ddd7c3e2f
Reviewed-on: https://gerrit.libreoffice.org/77527
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin
2019-08-15 13:35:20 +02:00
parent 39921c1657
commit 8e0918a04e
5 changed files with 7 additions and 7 deletions

View File

@@ -237,7 +237,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM
// Append carbon copy recipients set in the message
Sequence< OUString > aStringList = xSimpleMailMessage->getCcRecipient();
for ( const auto& rString : aStringList )
for ( const auto& rString : std::as_const(aStringList) )
{
aBuffer.append(" --cc ");
appendShellWord(aBuffer, rString, false);
@@ -245,7 +245,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM
// Append blind carbon copy recipients set in the message
aStringList = xSimpleMailMessage->getBccRecipient();
for ( const auto& rString : aStringList )
for ( const auto& rString : std::as_const(aStringList) )
{
aBuffer.append(" --bcc ");
appendShellWord(aBuffer, rString, false);
@@ -260,7 +260,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM
// Append attachments set in the message
aStringList = xSimpleMailMessage->getAttachement();
for ( const auto& rString : aStringList )
for ( const auto& rString : std::as_const(aStringList) )
{
OUString aSystemPath;
if ( FileBase::E_None == FileBase::getSystemPathFromFileURL(rString, aSystemPath) )

View File

@@ -397,7 +397,7 @@ void ShapeImporter::importPolygons(uno::Reference<beans::XPropertySet> const& xP
getPropertyValue( nLineColor, xPropSet, "LineColor" );
getPropertyValue( fLineWidth, xPropSet, "LineWidth" );
drawing::PointSequence* pOuterSequence = aRetval.getArray();
const drawing::PointSequence* pOuterSequence = aRetval.getArray();
::basegfx::B2DPolygon aPoly;
basegfx::B2DPoint aPoint;

View File

@@ -841,7 +841,7 @@ void SlideImpl::applyShapeAttributes(
const css::uno::Reference< css::animations::XAnimationNode >& xRootAnimationNode,
bool bInitial) const
{
uno::Sequence< animations::TargetProperties > aProps(
const uno::Sequence< animations::TargetProperties > aProps(
TargetPropertiesCreator::createTargetProperties( xRootAnimationNode, bInitial ) );
// apply extracted values to our shapes

View File

@@ -1941,7 +1941,7 @@ bool UCBStorage_Impl::Insert( ::ucbhelper::Content *pContent )
try
{
Sequence< ContentInfo > aInfo = pContent->queryCreatableContentsInfo();
const Sequence< ContentInfo > aInfo = pContent->queryCreatableContentsInfo();
if ( !aInfo.hasElements() )
return false;

View File

@@ -236,7 +236,7 @@ void OLESimpleStorage::InsertNameAccessToStorage_Impl( BaseStorage* pStorage, co
try
{
uno::Sequence< OUString > aElements = xNameAccess->getElementNames();
const uno::Sequence< OUString > aElements = xNameAccess->getElementNames();
for ( const auto& rElement : aElements )
{
uno::Reference< io::XInputStream > xInputStream;