diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-11-30 06:50:50 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-11-30 18:45:18 +0100 |
commit | 7415fc31f5cdf7ff3f78dd304b9576b931a82aeb (patch) | |
tree | 1679c0eaddb6038f034786f3464d61bd0a096424 | |
parent | 56ad826194d0b9b42ed8bde35836b0e59c46baa6 (diff) |
write valid dxf record, related fdo#71971
Change-Id: I99f4dfca78cc0fd5d9b947000a99f8414c2a899b
-rw-r--r-- | sc/source/filter/excel/xestyle.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx index 0769ea3cdc81..59603ebb9a93 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 ); } |