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

Noel Grandin noel.grandin at collabora.co.uk
Thu Feb 2 08:49:48 UTC 2017


 xmloff/source/text/txtparae.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bfc34f65da345300a6c51d3aedbd39fb02ace855
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Thu Feb 2 10:48:56 2017 +0200

    fix linux build
    
    after commit 1461ebb
    "expand out ::sax::Converter::convertNumber to OUString::number"
    
    Change-Id: I9bf0d36f9623491a8f760e88029b5d9a04369eba

diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index cd92849..d733d7f 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -3063,7 +3063,7 @@ void XMLTextParagraphExport::_exportTextGraphic(
         OUStringBuffer sRet( GetXMLToken(XML_ROTATE).getLength()+4 );
         sRet.append( GetXMLToken(XML_ROTATE));
         sRet.append( '(' );
-        sRet.append( nVal );
+        sRet.append( (sal_Int32)nVal );
         sRet.append( ')' );
         GetExport().AddAttribute( XML_NAMESPACE_SVG, XML_TRANSFORM,
                                   sRet.makeStringAndClear() );


More information about the Libreoffice-commits mailing list