[Libreoffice-commits] core.git: sc/source

Eike Rathke erack at redhat.com
Mon Dec 9 14:58:11 PST 2013


 sc/source/filter/xml/xmlcvali.cxx |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit 8047ae4a8244199717698f2e2f5281551e97912c
Author: Eike Rathke <erack at 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

diff --git a/sc/source/filter/xml/xmlcvali.cxx b/sc/source/filter/xml/xmlcvali.cxx
index 92a2f8d..da0a3f5 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;
                 }
             }


More information about the Libreoffice-commits mailing list