Blame SOURCES/0032-write-valid-dxf-record-related-fdo-71971.patch

f0633d
From 99643319b62c3673b57f31d61a4619625747a444 Mon Sep 17 00:00:00 2001
f0633d
From: Markus Mohrhard <markus.mohrhard@googlemail.com>
f0633d
Date: Sat, 30 Nov 2013 06:50:50 +0100
f0633d
Subject: [PATCH 032/109] write valid dxf record, related fdo#71971
f0633d
f0633d
Change-Id: I99f4dfca78cc0fd5d9b947000a99f8414c2a899b
f0633d
(cherry picked from commit 7415fc31f5cdf7ff3f78dd304b9576b931a82aeb)
f0633d
Reviewed-on: https://gerrit.libreoffice.org/6878
f0633d
Reviewed-by: Eike Rathke <erack@redhat.com>
f0633d
Tested-by: Eike Rathke <erack@redhat.com>
f0633d
---
f0633d
 sc/source/filter/excel/xestyle.cxx | 12 ++++++------
f0633d
 1 file changed, 6 insertions(+), 6 deletions(-)
f0633d
f0633d
diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx
f0633d
index 3186cda..486481a 100644
f0633d
--- a/sc/source/filter/excel/xestyle.cxx
f0633d
+++ b/sc/source/filter/excel/xestyle.cxx
f0633d
@@ -3021,18 +3021,18 @@ void XclExpDxf::SaveXml( XclExpXmlStream& rStrm )
f0633d
     sax_fastparser::FSHelperPtr& rStyleSheet = rStrm.GetCurrentStream();
f0633d
     rStyleSheet->startElement( XML_dxf, FSEND );
f0633d
 
f0633d
-    if (mpAlign)
f0633d
-        mpAlign->SaveXml(rStrm);
f0633d
-    if (mpBorder)
f0633d
-        mpBorder->SaveXml(rStrm);
f0633d
     if (mpFont)
f0633d
         mpFont->SaveXml(rStrm);
f0633d
     if (mpNumberFmt)
f0633d
         mpNumberFmt->SaveXml(rStrm);
f0633d
-    if (mpProt)
f0633d
-        mpProt->SaveXml(rStrm);
f0633d
     if (mpColor)
f0633d
         mpColor->SaveXml(rStrm);
f0633d
+    if (mpAlign)
f0633d
+        mpAlign->SaveXml(rStrm);
f0633d
+    if (mpBorder)
f0633d
+        mpBorder->SaveXml(rStrm);
f0633d
+    if (mpProt)
f0633d
+        mpProt->SaveXml(rStrm);
f0633d
     rStyleSheet->endElement( XML_dxf );
f0633d
 }
f0633d
 
f0633d
-- 
f0633d
1.8.4.2
f0633d