svx/source/table/tablestylesparser.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit f2d6669594d46bc00f3b78c5f87fe845072543eb Author: Andrea Gelmini <[email protected]> AuthorDate: Wed Feb 4 21:56:40 2026 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Fri Feb 6 12:15:57 2026 +0100 Fix typo in code Change-Id: I84684b4e9653d7ab8b26c1e0861bc9d02f1bf06b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198709 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/svx/source/table/tablestylesparser.cxx b/svx/source/table/tablestylesparser.cxx index d0ba431bd841..618874600165 100644 --- a/svx/source/table/tablestylesparser.cxx +++ b/svx/source/table/tablestylesparser.cxx @@ -645,13 +645,13 @@ void SvxTableStylesExport::exportTableTemplate(const SvxAutoFormatData& rData) if (i < 10) { - SvXMLElementExport aElememnt(*this, XML_NAMESPACE_TABLE, - CellStyleNameMap.at(IndexToCellField.at(i)), true, false); + SvXMLElementExport aElement(*this, XML_NAMESPACE_TABLE, + CellStyleNameMap.at(IndexToCellField.at(i)), true, false); } else { - SvXMLElementExport aElememnt(*this, XML_NAMESPACE_LO_EXT, - CellStyleNameMap.at(IndexToCellField.at(i)), true, false); + SvXMLElementExport aElement(*this, XML_NAMESPACE_LO_EXT, + CellStyleNameMap.at(IndexToCellField.at(i)), true, false); } } }
