diff options
author | Eike Rathke <erack@redhat.com> | 2013-07-09 15:48:10 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-07-09 15:52:21 +0200 |
commit | 4935422b410757bb4920b98a2d81da3c11b8e3d7 (patch) | |
tree | 8c6c5e217e76f77313b864ee1cd6b29b499eadb8 /xmloff/source/text/XMLSectionExport.cxx | |
parent | cc7a301dad831f8113cc3d737e2f4d23061a65ac (diff) |
read/write ODF *:script* and *:rfc-language-tag*
This prepares to be able to read/write the attributes, it does not
enable proper handling of unknown language tags yet. An unknown tag
usually falls back to SYSTEM locale.
Change-Id: I4a78e8fd37deae188c69570157bc4589a712bc7a
Diffstat (limited to 'xmloff/source/text/XMLSectionExport.cxx')
-rw-r--r-- | xmloff/source/text/XMLSectionExport.cxx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/xmloff/source/text/XMLSectionExport.cxx b/xmloff/source/text/XMLSectionExport.cxx index 38330c77d5a2..f5f763dfe752 100644 --- a/xmloff/source/text/XMLSectionExport.cxx +++ b/xmloff/source/text/XMLSectionExport.cxx @@ -710,10 +710,7 @@ void XMLSectionExport::ExportAlphabeticalIndexStart( aAny = rPropertySet->getPropertyValue(sLocale); Locale aLocale; aAny >>= aLocale; - GetExport().AddAttribute(XML_NAMESPACE_FO, XML_LANGUAGE, - aLocale.Language); - GetExport().AddAttribute(XML_NAMESPACE_FO, XML_COUNTRY, - aLocale.Country); + GetExport().AddLanguageTagAttributes( XML_NAMESPACE_FO, XML_NAMESPACE_STYLE, aLocale, true); ExportBaseIndexSource(TEXT_SECTION_TYPE_ALPHABETICAL, rPropertySet); } @@ -1696,10 +1693,7 @@ void XMLSectionExport::ExportBibliographyConfiguration(SvXMLExport& rExport) aAny = xPropSet->getPropertyValue(sLocale); Locale aLocale; aAny >>= aLocale; - rExport.AddAttribute(XML_NAMESPACE_FO, XML_LANGUAGE, - aLocale.Language); - rExport.AddAttribute(XML_NAMESPACE_FO, XML_COUNTRY, - aLocale.Country); + rExport.AddLanguageTagAttributes( XML_NAMESPACE_FO, XML_NAMESPACE_STYLE, aLocale, true); // configuration element SvXMLElementExport aElement(rExport, XML_NAMESPACE_TEXT, |