diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-03-03 23:30:42 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-04 06:25:01 +0000 |
commit | 33ac4636c054773baba58256329d35579c9f99e3 (patch) | |
tree | d94e71021d597eb2c9c0d33a69bdd973d11f73b2 /xmloff | |
parent | 919d5ac6b02e85126b3938c31daf4a891d3b2d90 (diff) |
Typo: exportBindingAtributes->exportBindingAttributes
Change-Id: I8211918b90e096e65de2ce8efeac3bede47b42ec
Reviewed-on: https://gerrit.libreoffice.org/34876
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/forms/elementexport.cxx | 6 | ||||
-rw-r--r-- | xmloff/source/forms/elementexport.hxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx index b239cb4beafd..29d837bb347b 100644 --- a/xmloff/source/forms/elementexport.cxx +++ b/xmloff/source/forms/elementexport.cxx @@ -294,7 +294,7 @@ namespace xmloff exportDatabaseAttributes(); // attributes related to external bindings - exportBindingAtributes(); + exportBindingAttributes(); // attributes special to the respective control type exportSpecialAttributes(); @@ -896,7 +896,7 @@ namespace xmloff #endif } - void OControlExport::exportBindingAtributes() + void OControlExport::exportBindingAttributes() { #if OSL_DEBUG_LEVEL > 0 BAFlags nIncludeBinding = m_nIncludeBindings; @@ -949,7 +949,7 @@ namespace xmloff #if OSL_DEBUG_LEVEL > 0 OSL_ENSURE( BAFlags::NONE == nIncludeBinding, - "OControlExport::exportBindingAtributes: forgot some flags!"); + "OControlExport::exportBindingAttributes: forgot some flags!"); // in the debug version, we should have removed every bit we handled from the mask, so it should // be 0 now ... #endif diff --git a/xmloff/source/forms/elementexport.hxx b/xmloff/source/forms/elementexport.hxx index c3fcd4e96648..6d007734c770 100644 --- a/xmloff/source/forms/elementexport.hxx +++ b/xmloff/source/forms/elementexport.hxx @@ -173,7 +173,7 @@ namespace xmloff /** adds the XML attributes which are related to binding controls to external values and/or list sources */ - void exportBindingAtributes(); + void exportBindingAttributes(); /** adds attributes which are special to a control type to the export context's attribute list */ |