sc/source/filter/xml/xmlcvali.cxx | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit d1bb23e95e3c4ffd325d739b52bfe2910368a03d Author: Eike Rathke <er...@redhat.com> Date: Mon Dec 9 23:54:45 2013 +0100 be able to read the correct 'sort-ascending' value, fdo#72548 ... for <table:content-validation table:display-list='sort-ascending' ...> but do not write it yet. Change-Id: I05bdf27cee27f7456b660267b95126420474eb99 (cherry picked from commit 8047ae4a8244199717698f2e2f5281551e97912c) Reviewed-on: https://gerrit.libreoffice.org/7016 Reviewed-by: Markus Mohrhard <markus.mohrh...@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrh...@googlemail.com> diff --git a/sc/source/filter/xml/xmlcvali.cxx b/sc/source/filter/xml/xmlcvali.cxx index 2d634ae..d7f973d 100644 --- a/sc/source/filter/xml/xmlcvali.cxx +++ b/sc/source/filter/xml/xmlcvali.cxx @@ -257,6 +257,12 @@ ScXMLContentValidationContext::ScXMLContentValidationContext( ScXMLImport& rImpo } else if (IsXMLToken(sValue, XML_SORTED_ASCENDING)) { + // Read old wrong value, fdo#72548 + nShowList = sheet::TableValidationVisibility::SORTEDASCENDING; + } + else if (IsXMLToken(sValue, XML_SORT_ASCENDING)) + { + // Read correct value, fdo#72548 nShowList = sheet::TableValidationVisibility::SORTEDASCENDING; } } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits