diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-28 14:36:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-31 08:31:14 +0200 |
commit | 65aa9f9360daaf09cc2e3f14f19c859c883144c2 (patch) | |
tree | 8790c330d5733d912bd4cdc0e9125678b0c3885f /xmloff | |
parent | 1e0cfd5662d95cea84e80e4fe10d52c3b1101ae6 (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: Iaa9bca078574b85182bdc8c002123178d074b650
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101622
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/forms/elementexport.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/forms/elementimport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/forms/formattributes.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/forms/formattributes.hxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx index 7398ecee2a3c..a60d70437d9e 100644 --- a/xmloff/source/forms/elementexport.cxx +++ b/xmloff/source/forms/elementexport.cxx @@ -2175,8 +2175,8 @@ namespace xmloff PROPERTY_MASTERFIELDS); // detail fields exportStringSequenceAttribute( - OAttributeMetaData::getFormAttributeNamespace(faDetailFiels), - OAttributeMetaData::getFormAttributeName(faDetailFiels), + OAttributeMetaData::getFormAttributeNamespace(faDetailFields), + OAttributeMetaData::getFormAttributeName(faDetailFields), PROPERTY_DETAILFIELDS); } } // namespace xmloff diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx index 3fe06973d8cf..1cd555fee82e 100644 --- a/xmloff/source/forms/elementimport.cxx +++ b/xmloff/source/forms/elementimport.cxx @@ -1948,7 +1948,7 @@ namespace xmloff { // handle the master/details field attributes (they're way too special to let the OPropertyImport handle them) static const char* s_sMasterFieldsAttributeName = OAttributeMetaData::getFormAttributeName(faMasterFields); - static const char* s_sDetailFieldsAttributeName = OAttributeMetaData::getFormAttributeName(faDetailFiels); + static const char* s_sDetailFieldsAttributeName = OAttributeMetaData::getFormAttributeName(faDetailFields); if ( _rLocalName.equalsAscii(s_sMasterFieldsAttributeName) ) { diff --git a/xmloff/source/forms/formattributes.cxx b/xmloff/source/forms/formattributes.cxx index efc61abfa23a..e3da354d9996 100644 --- a/xmloff/source/forms/formattributes.cxx +++ b/xmloff/source/forms/formattributes.cxx @@ -94,7 +94,7 @@ namespace xmloff case faCommandType: return "command-type"; case faEscapeProcessing: return "escape-processing"; case faDatasource: return "datasource"; - case faDetailFiels: return "detail-fields"; + case faDetailFields: return "detail-fields"; case faFilter: return "filter"; case faIgnoreResult: return "ignore-result"; case faMasterFields: return "master-fields"; diff --git a/xmloff/source/forms/formattributes.hxx b/xmloff/source/forms/formattributes.hxx index 72dbc587f9fa..56c18a896ac9 100644 --- a/xmloff/source/forms/formattributes.hxx +++ b/xmloff/source/forms/formattributes.hxx @@ -153,7 +153,7 @@ namespace xmloff faCommandType, faEscapeProcessing, faDatasource, - faDetailFiels, + faDetailFields, faFilter, faIgnoreResult, faMasterFields, |