oox/source/core/filterdetect.cxx | 2 +- sw/source/writerfilter/ooxml/OOXMLStreamImpl.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 52afd5d2679229ffb0f84143fe80b50472cd7e3b Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Tue Jun 25 13:22:27 2024 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Tue Jun 25 13:53:52 2024 +0200 Fix typo Change-Id: Ic7b080780a924e0d824b3163487c21b6515844b1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169513 Tested-by: Julien Nabet <serval2...@yahoo.fr> Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx index c62ddfedd749..33c95c7e2ca3 100644 --- a/oox/source/core/filterdetect.cxx +++ b/oox/source/core/filterdetect.cxx @@ -161,7 +161,7 @@ void FilterDetectDocHandler::parseRelationship( const AttributeList& rAttribs ) Reference<XUriReferenceFactory> xFactory = UriReferenceFactory::create( mxContext ); try { - // use '/' to representent the root of the zip package ( and provide a 'file' scheme to + // use '/' to represent the root of the zip package ( and provide a 'file' scheme to // keep the XUriReference implementation happy ) Reference< XUriReference > xBase = xFactory->parse( u"file:///"_ustr ); diff --git a/sw/source/writerfilter/ooxml/OOXMLStreamImpl.cxx b/sw/source/writerfilter/ooxml/OOXMLStreamImpl.cxx index aa2567ad53b2..6ca6bb85a10b 100644 --- a/sw/source/writerfilter/ooxml/OOXMLStreamImpl.cxx +++ b/sw/source/writerfilter/ooxml/OOXMLStreamImpl.cxx @@ -122,7 +122,7 @@ bool OOXMLStreamImpl::lcl_getTarget(const uno::Reference<embed::XRelationshipAcc bool bFound = false; static uno::Reference<uri::XUriReferenceFactory> xFac = uri::UriReferenceFactory::create(mxContext); - // use '/' to representent the root of the zip package ( and provide a 'file' scheme to + // use '/' to represent the root of the zip package ( and provide a 'file' scheme to // keep the XUriReference implementation happy ) // add mspath to represent the 'source' of this stream uno::Reference<uri::XUriReference> xBase = xFac->parse("file:///" + msPath);