Kaydet (Commit) 8047ae4a authored tarafından Eike Rathke's avatar Eike Rathke

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
üst b0e66c05
...@@ -257,6 +257,12 @@ ScXMLContentValidationContext::ScXMLContentValidationContext( ScXMLImport& rImpo ...@@ -257,6 +257,12 @@ ScXMLContentValidationContext::ScXMLContentValidationContext( ScXMLImport& rImpo
} }
else if (IsXMLToken(sValue, XML_SORTED_ASCENDING)) 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; nShowList = sheet::TableValidationVisibility::SORTEDASCENDING;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment