diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-04-18 13:18:46 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-04-18 13:18:46 +0000 |
commit | 9b5fbf83137e056039af454e6bcbfdd7d31eb7f6 (patch) | |
tree | d4904ed4fae0ab19451ecbd1c00affd166ef63e9 /oox | |
parent | 5ab0e6c0cee8bbf506a8e8881860ec0ce9f3bfd6 (diff) |
INTEGRATION: CWS xmlfilter04 (1.2.12); FILE MERGED
2008/02/27 14:40:08 dr 1.2.12.1: add setters to Color class, add gamma to a:scrgbClr
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/textparagraphproperties.cxx | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/oox/source/drawingml/textparagraphproperties.cxx b/oox/source/drawingml/textparagraphproperties.cxx index 2f5c95630189..4f663d1d6115 100644 --- a/oox/source/drawingml/textparagraphproperties.cxx +++ b/oox/source/drawingml/textparagraphproperties.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: textparagraphproperties.cxx,v $ - * $Revision: 1.3 $ + * $Revision: 1.4 $ * * This file is part of OpenOffice.org. * @@ -357,15 +357,12 @@ void TextParagraphProperties::apply( const TextParagraphPropertiesPtr& rSourceTe void TextParagraphProperties::pushToPropSet( const ::oox::core::XmlFilterBase& rFilterBase, const Reference < XPropertySet >& xPropSet, PropertyMap& rioBulletMap, sal_Bool bApplyBulletMap ) const { - PropertySet aPropSet( xPropSet ); - Sequence< OUString > aNames; - Sequence< Any > aValues; - // maTextParagraphPropertyMap.dump_debug("TextParagraph paragraph props"); - maTextParagraphPropertyMap.makeSequence( aNames, aValues ); - aPropSet.setProperties( aNames, aValues ); - maTextCharacterPropertiesPtr->pushToPropSet( rFilterBase, aPropSet.getXPropertySet() ); + PropertySet aPropSet( xPropSet ); + aPropSet.setProperties( maTextParagraphPropertyMap ); + + maTextCharacterPropertiesPtr->pushToPropSet( rFilterBase, xPropSet ); maBulletList.pushToPropMap( rFilterBase, rioBulletMap ); if ( maParaTopMargin.bHasValue ) |