sc/source/filter/excel/xestyle.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
New commits: commit 99643319b62c3673b57f31d61a4619625747a444 Author: Markus Mohrhard <markus.mohrh...@googlemail.com> Date: Sat Nov 30 06:50:50 2013 +0100 write valid dxf record, related fdo#71971 Change-Id: I99f4dfca78cc0fd5d9b947000a99f8414c2a899b (cherry picked from commit 7415fc31f5cdf7ff3f78dd304b9576b931a82aeb) Reviewed-on: https://gerrit.libreoffice.org/6878 Reviewed-by: Eike Rathke <er...@redhat.com> Tested-by: Eike Rathke <er...@redhat.com> diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx index 3186cda..486481a 100644 --- a/sc/source/filter/excel/xestyle.cxx +++ b/sc/source/filter/excel/xestyle.cxx @@ -3021,18 +3021,18 @@ void XclExpDxf::SaveXml( XclExpXmlStream& rStrm ) sax_fastparser::FSHelperPtr& rStyleSheet = rStrm.GetCurrentStream(); rStyleSheet->startElement( XML_dxf, FSEND ); - if (mpAlign) - mpAlign->SaveXml(rStrm); - if (mpBorder) - mpBorder->SaveXml(rStrm); if (mpFont) mpFont->SaveXml(rStrm); if (mpNumberFmt) mpNumberFmt->SaveXml(rStrm); - if (mpProt) - mpProt->SaveXml(rStrm); if (mpColor) mpColor->SaveXml(rStrm); + if (mpAlign) + mpAlign->SaveXml(rStrm); + if (mpBorder) + mpBorder->SaveXml(rStrm); + if (mpProt) + mpProt->SaveXml(rStrm); rStyleSheet->endElement( XML_dxf ); } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits