From db283d2e3f5cd8be412c5204f358cd06af761b13 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 8 Jan 2021 20:22:05 +0100 Subject: xmloff: "form:datasource" vs. "db:data-source" Recently xmloff started to use XML_DATASOURCE for "form:datasource" but it actually means "data-source". Add XML_DATA_SOURCE and use it for "db:data-source". (regression from 3de38e95561ab7ca114d9f3307702ba89c4e3e9a) Change-Id: I893efd3fb0fb7c19ae998442459bf36cb1da0b20 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109019 Tested-by: Jenkins Reviewed-by: Noel Grandin Reviewed-by: Michael Stahl --- xmloff/source/core/xmltoken.cxx | 3 ++- xmloff/source/token/tokens.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'xmloff') diff --git a/xmloff/source/core/xmltoken.cxx b/xmloff/source/core/xmltoken.cxx index cd3a85f469d5..bc8b04334ead 100644 --- a/xmloff/source/core/xmltoken.cxx +++ b/xmloff/source/core/xmltoken.cxx @@ -2316,7 +2316,8 @@ namespace xmloff::token { TOKEN( "sorted-ascending", XML_SORTED_ASCENDING ), TOKEN( "database", XML_DATABASE ), - TOKEN( "data-source", XML_DATASOURCE ), + TOKEN( "datasource", XML_DATASOURCE ), + TOKEN( "data-source", XML_DATA_SOURCE ), TOKEN( "queries", XML_QUERIES ), TOKEN( "reports", XML_REPORTS ), TOKEN( "report", XML_REPORT ), diff --git a/xmloff/source/token/tokens.txt b/xmloff/source/token/tokens.txt index ff92a2f34a9c..e23cd24abda6 100644 --- a/xmloff/source/token/tokens.txt +++ b/xmloff/source/token/tokens.txt @@ -2183,6 +2183,7 @@ unsorted font-independent-line-spacing sorted-ascending database +datasource data-source queries reports -- cgit