summaryrefslogtreecommitdiff
path: root/oox/source/drawingml
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml')
-rw-r--r--oox/source/drawingml/effectproperties.cxx14
-rw-r--r--oox/source/drawingml/fillproperties.cxx46
-rw-r--r--oox/source/drawingml/lineproperties.cxx16
-rw-r--r--oox/source/drawingml/textcharacterproperties.cxx26
4 files changed, 51 insertions, 51 deletions
diff --git a/oox/source/drawingml/effectproperties.cxx b/oox/source/drawingml/effectproperties.cxx
index 88d69a16d177..579f4e1ab0ac 100644
--- a/oox/source/drawingml/effectproperties.cxx
+++ b/oox/source/drawingml/effectproperties.cxx
@@ -21,23 +21,23 @@ namespace oox::drawingml {
void EffectGlowProperties ::assignUsed(const EffectGlowProperties& rSourceProps)
{
- moGlowRad.assignIfUsed( rSourceProps.moGlowRad );
+ assignIfUsed( moGlowRad, rSourceProps.moGlowRad );
moGlowColor.assignIfUsed( rSourceProps.moGlowColor );
}
void EffectSoftEdgeProperties::assignUsed(const EffectSoftEdgeProperties& rSourceProps)
{
- moRad.assignIfUsed(rSourceProps.moRad);
+ assignIfUsed(moRad, rSourceProps.moRad);
}
void EffectShadowProperties::assignUsed(const EffectShadowProperties& rSourceProps)
{
- moShadowDist.assignIfUsed( rSourceProps.moShadowDist );
- moShadowDir.assignIfUsed( rSourceProps.moShadowDir );
- moShadowSx.assignIfUsed( rSourceProps.moShadowSx );
- moShadowSy.assignIfUsed( rSourceProps.moShadowSy );
+ assignIfUsed( moShadowDist, rSourceProps.moShadowDist );
+ assignIfUsed( moShadowDir, rSourceProps.moShadowDir );
+ assignIfUsed( moShadowSx, rSourceProps.moShadowSx );
+ assignIfUsed( moShadowSy, rSourceProps.moShadowSy );
moShadowColor.assignIfUsed( rSourceProps.moShadowColor );
- moShadowBlur.assignIfUsed( rSourceProps.moShadowBlur );
+ assignIfUsed( moShadowBlur, rSourceProps.moShadowBlur );
}
diff --git a/oox/source/drawingml/fillproperties.cxx b/oox/source/drawingml/fillproperties.cxx
index b26c42b85759..f315f0182245 100644
--- a/oox/source/drawingml/fillproperties.cxx
+++ b/oox/source/drawingml/fillproperties.cxx
@@ -292,51 +292,51 @@ void GradientFillProperties::assignUsed( const GradientFillProperties& rSourcePr
{
if( !rSourceProps.maGradientStops.empty() )
maGradientStops = rSourceProps.maGradientStops;
- moFillToRect.assignIfUsed( rSourceProps.moFillToRect );
- moTileRect.assignIfUsed( rSourceProps.moTileRect );
- moGradientPath.assignIfUsed( rSourceProps.moGradientPath );
- moShadeAngle.assignIfUsed( rSourceProps.moShadeAngle );
- moShadeFlip.assignIfUsed( rSourceProps.moShadeFlip );
- moShadeScaled.assignIfUsed( rSourceProps.moShadeScaled );
- moRotateWithShape.assignIfUsed( rSourceProps.moRotateWithShape );
+ assignIfUsed( moFillToRect, rSourceProps.moFillToRect );
+ assignIfUsed( moTileRect, rSourceProps.moTileRect );
+ assignIfUsed( moGradientPath, rSourceProps.moGradientPath );
+ assignIfUsed( moShadeAngle, rSourceProps.moShadeAngle );
+ assignIfUsed( moShadeFlip, rSourceProps.moShadeFlip );
+ assignIfUsed( moShadeScaled, rSourceProps.moShadeScaled );
+ assignIfUsed( moRotateWithShape, rSourceProps.moRotateWithShape );
}
void PatternFillProperties::assignUsed( const PatternFillProperties& rSourceProps )
{
maPattFgColor.assignIfUsed( rSourceProps.maPattFgColor );
maPattBgColor.assignIfUsed( rSourceProps.maPattBgColor );
- moPattPreset.assignIfUsed( rSourceProps.moPattPreset );
+ assignIfUsed( moPattPreset, rSourceProps.moPattPreset );
}
void BlipFillProperties::assignUsed( const BlipFillProperties& rSourceProps )
{
if(rSourceProps.mxFillGraphic.is())
mxFillGraphic = rSourceProps.mxFillGraphic;
- moBitmapMode.assignIfUsed( rSourceProps.moBitmapMode );
- moFillRect.assignIfUsed( rSourceProps.moFillRect );
- moTileOffsetX.assignIfUsed( rSourceProps.moTileOffsetX );
- moTileOffsetY.assignIfUsed( rSourceProps.moTileOffsetY );
- moTileScaleX.assignIfUsed( rSourceProps.moTileScaleX );
- moTileScaleY.assignIfUsed( rSourceProps.moTileScaleY );
- moTileAlign.assignIfUsed( rSourceProps.moTileAlign );
- moTileFlip.assignIfUsed( rSourceProps.moTileFlip );
- moRotateWithShape.assignIfUsed( rSourceProps.moRotateWithShape );
- moColorEffect.assignIfUsed( rSourceProps.moColorEffect );
- moBrightness.assignIfUsed( rSourceProps.moBrightness );
- moContrast.assignIfUsed( rSourceProps.moContrast );
+ assignIfUsed( moBitmapMode, rSourceProps.moBitmapMode );
+ assignIfUsed( moFillRect, rSourceProps.moFillRect );
+ assignIfUsed( moTileOffsetX, rSourceProps.moTileOffsetX );
+ assignIfUsed( moTileOffsetY, rSourceProps.moTileOffsetY );
+ assignIfUsed( moTileScaleX, rSourceProps.moTileScaleX );
+ assignIfUsed( moTileScaleY, rSourceProps.moTileScaleY );
+ assignIfUsed( moTileAlign, rSourceProps.moTileAlign );
+ assignIfUsed( moTileFlip, rSourceProps.moTileFlip );
+ assignIfUsed( moRotateWithShape, rSourceProps.moRotateWithShape );
+ assignIfUsed( moColorEffect, rSourceProps.moColorEffect );
+ assignIfUsed( moBrightness, rSourceProps.moBrightness );
+ assignIfUsed( moContrast, rSourceProps.moContrast );
maColorChangeFrom.assignIfUsed( rSourceProps.maColorChangeFrom );
maColorChangeTo.assignIfUsed( rSourceProps.maColorChangeTo );
maDuotoneColors[0].assignIfUsed( rSourceProps.maDuotoneColors[0] );
maDuotoneColors[1].assignIfUsed( rSourceProps.maDuotoneColors[1] );
maEffect.assignUsed( rSourceProps.maEffect );
- moAlphaModFix.assignIfUsed(rSourceProps.moAlphaModFix);
+ assignIfUsed(moAlphaModFix, rSourceProps.moAlphaModFix);
}
void FillProperties::assignUsed( const FillProperties& rSourceProps )
{
- moFillType.assignIfUsed( rSourceProps.moFillType );
+ assignIfUsed( moFillType, rSourceProps.moFillType );
maFillColor.assignIfUsed( rSourceProps.maFillColor );
- moUseBgFill.assignIfUsed( rSourceProps.moUseBgFill );
+ assignIfUsed( moUseBgFill, rSourceProps.moUseBgFill );
maGradientProps.assignUsed( rSourceProps.maGradientProps );
maPatternProps.assignUsed( rSourceProps.maPatternProps );
maBlipProps.assignUsed( rSourceProps.maBlipProps );
diff --git a/oox/source/drawingml/lineproperties.cxx b/oox/source/drawingml/lineproperties.cxx
index 4cd83045840a..3e32944825a0 100644
--- a/oox/source/drawingml/lineproperties.cxx
+++ b/oox/source/drawingml/lineproperties.cxx
@@ -410,9 +410,9 @@ void lclPushMarkerProperties( ShapePropertyMap& rPropMap,
void LineArrowProperties::assignUsed( const LineArrowProperties& rSourceProps )
{
- moArrowType.assignIfUsed( rSourceProps.moArrowType );
- moArrowWidth.assignIfUsed( rSourceProps.moArrowWidth );
- moArrowLength.assignIfUsed( rSourceProps.moArrowLength );
+ assignIfUsed( moArrowType, rSourceProps.moArrowType );
+ assignIfUsed( moArrowWidth, rSourceProps.moArrowWidth );
+ assignIfUsed( moArrowLength, rSourceProps.moArrowLength );
}
void LineProperties::assignUsed( const LineProperties& rSourceProps )
@@ -422,11 +422,11 @@ void LineProperties::assignUsed( const LineProperties& rSourceProps )
maLineFill.assignUsed( rSourceProps.maLineFill );
if( !rSourceProps.maCustomDash.empty() )
maCustomDash = rSourceProps.maCustomDash;
- moLineWidth.assignIfUsed( rSourceProps.moLineWidth );
- moPresetDash.assignIfUsed( rSourceProps.moPresetDash );
- moLineCompound.assignIfUsed( rSourceProps.moLineCompound );
- moLineCap.assignIfUsed( rSourceProps.moLineCap );
- moLineJoint.assignIfUsed( rSourceProps.moLineJoint );
+ assignIfUsed( moLineWidth, rSourceProps.moLineWidth );
+ assignIfUsed( moPresetDash, rSourceProps.moPresetDash );
+ assignIfUsed( moLineCompound, rSourceProps.moLineCompound );
+ assignIfUsed( moLineCap, rSourceProps.moLineCap );
+ assignIfUsed( moLineJoint, rSourceProps.moLineJoint );
}
void LineProperties::pushToPropMap( ShapePropertyMap& rPropMap,
diff --git a/oox/source/drawingml/textcharacterproperties.cxx b/oox/source/drawingml/textcharacterproperties.cxx
index 0406d7fa72b0..7cae52fcfd97 100644
--- a/oox/source/drawingml/textcharacterproperties.cxx
+++ b/oox/source/drawingml/textcharacterproperties.cxx
@@ -53,19 +53,19 @@ void TextCharacterProperties::assignUsed( const TextCharacterProperties& rSource
maSymbolFont.assignIfUsed( rSourceProps.maSymbolFont );
maHighlightColor.assignIfUsed( rSourceProps.maHighlightColor );
maUnderlineColor.assignIfUsed( rSourceProps.maUnderlineColor );
- moLang.assignIfUsed( rSourceProps.moLang );
- moHeight.assignIfUsed( rSourceProps.moHeight );
- moFontScale.assignIfUsed(rSourceProps.moFontScale);
- moSpacing.assignIfUsed( rSourceProps.moSpacing );
- moUnderline.assignIfUsed( rSourceProps.moUnderline );
- moBaseline.assignIfUsed( rSourceProps.moBaseline );
- moStrikeout.assignIfUsed( rSourceProps.moStrikeout );
- moCaseMap.assignIfUsed( rSourceProps.moCaseMap );
- moBold.assignIfUsed( rSourceProps.moBold );
- moItalic.assignIfUsed( rSourceProps.moItalic );
- moUnderlineLineFollowText.assignIfUsed( rSourceProps.moUnderlineLineFollowText );
- moUnderlineFillFollowText.assignIfUsed( rSourceProps.moUnderlineFillFollowText );
- moTextOutlineProperties.assignIfUsed(rSourceProps.moTextOutlineProperties);
+ assignIfUsed( moLang, rSourceProps.moLang );
+ assignIfUsed( moHeight, rSourceProps.moHeight );
+ assignIfUsed( moFontScale, rSourceProps.moFontScale);
+ assignIfUsed( moSpacing, rSourceProps.moSpacing );
+ assignIfUsed( moUnderline, rSourceProps.moUnderline );
+ assignIfUsed( moBaseline, rSourceProps.moBaseline );
+ assignIfUsed( moStrikeout, rSourceProps.moStrikeout );
+ assignIfUsed( moCaseMap, rSourceProps.moCaseMap );
+ assignIfUsed( moBold, rSourceProps.moBold );
+ assignIfUsed( moItalic, rSourceProps.moItalic );
+ assignIfUsed( moUnderlineLineFollowText, rSourceProps.moUnderlineLineFollowText );
+ assignIfUsed( moUnderlineFillFollowText, rSourceProps.moUnderlineFillFollowText );
+ assignIfUsed( moTextOutlineProperties, rSourceProps.moTextOutlineProperties);
maTextEffectsProperties = rSourceProps.maTextEffectsProperties;
maFillProperties.assignUsed( rSourceProps.maFillProperties );