[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - oox/source

Björgvin Ragnarsson nifgraup at gmail.com
Wed Mar 12 12:38:40 PDT 2014


 oox/source/drawingml/textcharacterproperties.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0b772a163b2536fc55aa3b4de925119e33af7691
Author: Björgvin Ragnarsson <nifgraup at gmail.com>
Date:   Wed Dec 4 14:30:43 2013 +0100

    fdo#72481 drawingml import: don't set CharEscapementHeight unconditionally
    
    Commit 840a8573c8cebe67ddd3c9fe106c7dbd789bb334 (Fix fdo#70220
    Superscript not imported from pptx., 2013-10-07) made it possible to set
    CharEscapementHeight even if moBaseline is not set, but this causes
    problems in the docx importer + not necessary, according to the bugdoc;
    so just don't do that.
    
    Conflicts:
    	sw/qa/extras/ooxmlimport/ooxmlimport.cxx
    
    Commit and message cherry picked from:
    
    commit 798a563db133ebed3876c245459d90ef54ee7c9a
    Author: Miklos Vajna <vmiklos at collabora.co.uk>
    
    Change-Id: Ib95ac449bd8fdf6376261ddc86108f0d23f2200e
    Reviewed-on: https://gerrit.libreoffice.org/8414
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Andras Timar <andras.timar at collabora.com>
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/oox/source/drawingml/textcharacterproperties.cxx b/oox/source/drawingml/textcharacterproperties.cxx
index a5fe786..13ccfb8 100644
--- a/oox/source/drawingml/textcharacterproperties.cxx
+++ b/oox/source/drawingml/textcharacterproperties.cxx
@@ -125,7 +125,7 @@ void TextCharacterProperties::pushToPropMap( PropertyMap& rPropMap, const XmlFil
     rPropMap[ PROP_CharStrikeout ] <<= GetFontStrikeout( moStrikeout.get( XML_noStrike ) );
     rPropMap[ PROP_CharCaseMap ] <<= GetCaseMap( moCaseMap.get( XML_none ) );
 
-    if( !bUseOptional || moBaseline.has() ) {
+    if( moBaseline.has() ) {
         rPropMap[ PROP_CharEscapement ] <<= sal_Int16(moBaseline.get( 0 ) / 1000);
         rPropMap[ PROP_CharEscapementHeight ] <<= sal_Int8(DFLT_ESC_PROP);
     }


More information about the Libreoffice-commits mailing list