summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMuthu Subramanian <sumuthu@collabora.com>2014-03-28 17:44:55 +0530
committerMuthu Subramanian <sumuthu@collabora.com>2014-03-28 17:44:55 +0530
commit7af3170c6bf1480610f3db46d2354769d42c43a4 (patch)
tree69654f543dcd10ac6b3fd8e608e9e5da368c86f7 /oox
parent186b96dcfbd0ed87ef414246555e9f953927d692 (diff)
Use setProperty instead of << operator
Change-Id: I2c553a41de430c200445d8c8e8300af13d0eaea0
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/textcharacterproperties.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/textcharacterproperties.cxx b/oox/source/drawingml/textcharacterproperties.cxx
index 5f7cf4f88c3c..3ade36328702 100644
--- a/oox/source/drawingml/textcharacterproperties.cxx
+++ b/oox/source/drawingml/textcharacterproperties.cxx
@@ -110,7 +110,7 @@ void TextCharacterProperties::pushToPropMap( PropertyMap& rPropMap, const XmlFil
if( maCharColor.isUsed() )
rPropMap.setProperty( PROP_CharColor, maCharColor.getColor( rFilter.getGraphicHelper() ));
if( maGradientProps.maGradientStops.size() > 0 )
- rPropMap[ PROP_CharColor ] <<= maGradientProps.maGradientStops.begin()->second.getColor( rFilter.getGraphicHelper() );
+ rPropMap.setProperty( PROP_CharColor, maGradientProps.maGradientStops.begin()->second.getColor( rFilter.getGraphicHelper() ));
if( moLang.has() && !moLang.get().isEmpty() )
{