summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerge Krot <Serge.Krot@cib.de>2020-07-21 16:05:15 +0200
committerSerge Krot <Serge.Krot@cib.de>2020-07-29 10:15:47 +0200
commit6a227cbd36bfc7847ab1d940c90d46552b959fb6 (patch)
treeed50b38f2c22598fbe10130ab31ca358623bd862
parenttdf#132911 sw_redlinehide: fix assert in CopyImplImpl() (diff)
downloadcore-6a227cbd36bfc7847ab1d940c90d46552b959fb6.tar.gz
core-6a227cbd36bfc7847ab1d940c90d46552b959fb6.zip
tdf#134769 XLSX export fix: unable to open with MS Excel
Change-Id: I8fff01118e25768ca54c816fcb0eb522da6f38bb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99149 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> (cherry picked from commit 641dbafcb4c7b00bc9e56b58d12c95a6f05ee88d) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99395 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org> (cherry picked from commit 05b1e42a168b9675cff45b6be3ca8c28f01a629a) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99491 Reviewed-by: Serge Krot <Serge.Krot@cib.de> Tested-by: Serge Krot <Serge.Krot@cib.de>
-rw-r--r--sc/source/filter/xcl97/xcl97rec.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xcl97/xcl97rec.cxx b/sc/source/filter/xcl97/xcl97rec.cxx
index 37c55e9d629c..4a4656f57a94 100644
--- a/sc/source/filter/xcl97/xcl97rec.cxx
+++ b/sc/source/filter/xcl97/xcl97rec.cxx
@@ -364,8 +364,8 @@ void XclExpObjList::SaveXml( XclExpXmlStream& rStrm )
return;
SaveDrawingMLObjects( *this, rStrm );
- SaveFormControlObjects( *this, rStrm );
SaveVmlObjects( *this, rStrm, mnVmlCount );
+ SaveFormControlObjects( *this, rStrm );
}
void XclExpObjList::ResetCounters()