oox/source/drawingml/diagram/datamodel_oox.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit b7850f4342ebbaa350931a9259cc384318ad1728 Author: Andrea Gelmini <[email protected]> AuthorDate: Thu Jan 22 16:06:30 2026 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Thu Jan 22 17:16:18 2026 +0100 Fix typo Change-Id: Ia1a213e147dba46fc77741588e039a07cb2a5984 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197846 Tested-by: Julien Nabet <[email protected]> Reviewed-by: Julien Nabet <[email protected]> diff --git a/oox/source/drawingml/diagram/datamodel_oox.cxx b/oox/source/drawingml/diagram/datamodel_oox.cxx index b6aa85e7f01d..37d89661bf69 100644 --- a/oox/source/drawingml/diagram/datamodel_oox.cxx +++ b/oox/source/drawingml/diagram/datamodel_oox.cxx @@ -136,7 +136,7 @@ void DiagramData_oox::writeDiagramData(oox::core::XmlFilterBase& rFB, sax_fastpa if (xCandidate.is()) { // check comparing the DiagramDataModelID created at BackgroundSHape creation for the oox::Shape - // that got transferend to the XShape when it was created + // that got transferred to the XShape when it was created SdrObject* pCandidate(SdrObject::getSdrObjectFromXShape(xCandidate)); if (nullptr != pCandidate && pCandidate->getDiagramDataModelID() == getBackgroundShapeModelID()) xBgShape = xCandidate; @@ -158,7 +158,7 @@ void DiagramData_oox::writeDiagramData(oox::core::XmlFilterBase& rFB, sax_fastpa // write ExtList & it's contents // Note: I *tried* to use XML_dsp and xmlns:dsp, but these are not defined, thus - // for this case where the only relevant data is the 'relId' entzry I will allow + // for this case where the only relevant data is the 'relId' entry I will allow // to construct the XML statement by own string concatenation rTarget->startElementNS(XML_dgm, XML_extLst); const OUString rNsDsp(rFB.getNamespaceURL(OOX_NS(dsp)));
