summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-12-09 23:54:45 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-12-10 11:31:24 +0000
commitd1bb23e95e3c4ffd325d739b52bfe2910368a03d (patch)
tree12f884fe0cf6b87d18ddfedf2897148bd1747fea
parent74f181d285425bf7ec2ec8a18ad9f2e075f52594 (diff)
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.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--sc/source/filter/xml/xmlcvali.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/filter/xml/xmlcvali.cxx b/sc/source/filter/xml/xmlcvali.cxx
index 2d634aea8a7f..d7f973df9e46 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;
}
}