[Libreoffice-commits] core.git: oox/source

Muthu Subramanian sumuthu at collabora.com
Thu Dec 12 04:45:03 PST 2013


 oox/source/drawingml/textcharacterproperties.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit fdf77f50ab825bd2b44e980552f3383acf637b12
Author: Muthu Subramanian <sumuthu at collabora.com>
Date:   Thu Dec 12 18:24:42 2013 +0530

    n#828390: Reset charescapement.
    
    Unless the value is reset - the escapement
    seems to continue to the next set of textruns.

diff --git a/oox/source/drawingml/textcharacterproperties.cxx b/oox/source/drawingml/textcharacterproperties.cxx
index febb28c..c99a44a 100644
--- a/oox/source/drawingml/textcharacterproperties.cxx
+++ b/oox/source/drawingml/textcharacterproperties.cxx
@@ -119,6 +119,9 @@ void TextCharacterProperties::pushToPropMap( PropertyMap& rPropMap, const XmlFil
     if( moBaseline.has() ) {
         rPropMap[ PROP_CharEscapement ] <<= sal_Int16(moBaseline.get( 0 ) / 1000);
         rPropMap[ PROP_CharEscapementHeight ] <<= sal_Int8(DFLT_ESC_PROP);
+    } else {
+        rPropMap[ PROP_CharEscapement ] <<= sal_Int16(0);
+        rPropMap[ PROP_CharEscapementHeight ] <<= sal_Int8(100); // 100%
     }
 
     if( !bUseOptional || moBold.has() ) {


More information about the Libreoffice-commits mailing list