[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Wed Dec 4 02:58:28 PST 2013
sc/source/filter/excel/xestyle.cxx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
New commits:
commit 99643319b62c3673b57f31d61a4619625747a444
Author: Markus Mohrhard <markus.mohrhard at 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 <erack at redhat.com>
Tested-by: Eike Rathke <erack at 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 );
}
More information about the Libreoffice-commits
mailing list