summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-12-10 11:52:33 +0100
committerEike Rathke <erack@redhat.com>2013-12-10 11:56:51 +0100
commit6e89666b4e23189dcaa8fdb308e1b48015d6875b (patch)
tree288740c42742930cdb5fe1fe0c4d9f4340140280 /xmloff
parenta3f3fd00e4fb6beb70284902791ef9cbc3318659 (diff)
write the correct 'sort-ascending' value, fdo#72548
... for <table:content-validation table:display-list='sort-ascending' ...> Change-Id: I57d35cd08e3fce4eff5d571a19bb8793fde4a201
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/xmltoken.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/xmloff/source/core/xmltoken.cxx b/xmloff/source/core/xmltoken.cxx
index 431e778ea958..95ce705f8cc5 100644
--- a/xmloff/source/core/xmltoken.cxx
+++ b/xmloff/source/core/xmltoken.cxx
@@ -2214,9 +2214,11 @@ namespace xmloff { namespace token {
TOKEN( "display-list", XML_DISPLAY_LIST ),
TOKEN( "no", XML_NO ),
TOKEN( "unsorted", XML_UNSORTED ),
- TOKEN( "sorted-ascending", XML_SORTED_ASCENDING ),
TOKEN( "font-independent-line-spacing", XML_FONT_INDEPENDENT_LINE_SPACING ),
+ // Wrong! Do not write, use XML_SORT_ASCENDING instead. Only read. fdo#72548
+ TOKEN( "sorted-ascending", XML_SORTED_ASCENDING ),
+
TOKEN( "database", XML_DATABASE ),
TOKEN( "data-source", XML_DATASOURCE ),
TOKEN( "queries", XML_QUERIES ),