summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/xmloff/xmltoken.hxx5
-rw-r--r--xmloff/source/core/xmltoken.cxx5
2 files changed, 10 insertions, 0 deletions
diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index 651732e2d339..a47dedd9fc25 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -3203,6 +3203,11 @@ namespace xmloff { namespace token {
XML_ERROR_STANDARD_WEIGHT, // errorbar standard deviation error weight
+ // erAck: 2013-07-02 BCP 47 language tags
+ XML_RFC_LANGUAGE_TAG,
+ XML_RFC_LANGUAGE_TAG_ASIAN,
+ XML_RFC_LANGUAGE_TAG_COMPLEX,
+
XML_TOKEN_END
};
diff --git a/xmloff/source/core/xmltoken.cxx b/xmloff/source/core/xmltoken.cxx
index 5004a4cf0e46..07934bb96e7b 100644
--- a/xmloff/source/core/xmltoken.cxx
+++ b/xmloff/source/core/xmltoken.cxx
@@ -3204,6 +3204,11 @@ namespace xmloff { namespace token {
TOKEN( "std-weight", XML_ERROR_STANDARD_WEIGHT ),
+ // erAck: 2013-07-02 BCP 47 language tags
+ TOKEN( "rfc-language-tag", XML_RFC_LANGUAGE_TAG ),
+ TOKEN( "rfc-language-tag-asian", XML_RFC_LANGUAGE_TAG_ASIAN ),
+ TOKEN( "rfc-language-tag-complex", XML_RFC_LANGUAGE_TAG_COMPLEX ),
+
#if OSL_DEBUG_LEVEL > 0
{ 0, NULL, NULL, XML_TOKEN_END }
#else