diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-13 12:43:20 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-13 15:20:58 +0200 |
commit | 3697b87b70c69e17e1d0398e0192a11dab179fe3 (patch) | |
tree | a498cce1f1351e6f92385aa9245c66c0724b6430 /oox/source/drawingml | |
parent | 9bc95521aaa35b533894b3934519acdbd7a47815 (diff) |
use more OUString::operator== in forms..sal
Change-Id: I70d7e50f8c1e019524ccad915f0cca912c5035dc
Reviewed-on: https://gerrit.libreoffice.org/39899
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/source/drawingml')
-rw-r--r-- | oox/source/drawingml/customshapeproperties.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/drawingml/customshapeproperties.cxx b/oox/source/drawingml/customshapeproperties.cxx index 160879cc3e66..57aedfcd022a 100644 --- a/oox/source/drawingml/customshapeproperties.cxx +++ b/oox/source/drawingml/customshapeproperties.cxx @@ -164,7 +164,7 @@ void CustomShapeProperties::pushToPropSet( for ( i = 0; i < nCount; i++ ) { const OUString sAdjustmentValues("AdjustmentValues"); - if ( aGeoPropSeq[ i ].Name.equals( sAdjustmentValues ) ) + if ( aGeoPropSeq[ i ].Name == sAdjustmentValues ) { OUString presetTextWarp; if ( aGeoPropSeq[ i ].Value >>= presetTextWarp ) @@ -184,7 +184,7 @@ void CustomShapeProperties::pushToPropSet( for ( i = 0; i < nCount; i++ ) { const OUString sAdjustmentValues("AdjustmentValues"); - if ( aGeoPropSeq[ i ].Name.equals( sAdjustmentValues ) ) + if ( aGeoPropSeq[ i ].Name == sAdjustmentValues ) { uno::Sequence< css::drawing::EnhancedCustomShapeAdjustmentValue > aAdjustmentSeq; if ( aGeoPropSeq[ i ].Value >>= aAdjustmentSeq ) @@ -216,7 +216,7 @@ void CustomShapeProperties::pushToPropSet( xPropSet->setPropertyValue( sCustomShapeGeometry, Any( aGeoPropSeq ) ); } } - else if ( aGeoPropSeq[ i ].Name.equals( sType ) ) + else if ( aGeoPropSeq[ i ].Name == sType ) { if ( sConnectorShapeType.getLength() > 0 ) aGeoPropSeq[ i ].Value <<= sConnectorShapeType; |