diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-12-08 20:47:21 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-12-08 22:48:19 +0100 |
commit | b3122d56af5eefbb170de105579b59b097f34d58 (patch) | |
tree | 0c077e0872000f26b21e18a993499f2707a662e3 | |
parent | 3b391cc79ce5fc58988ec495642ca662da3d9f46 (diff) |
Fix typos
Change-Id: I9f61a7858a98ae6eb25cc49d237172876114c767
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160503
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | oox/source/drawingml/misccontexts.cxx | 2 | ||||
-rw-r--r-- | sd/qa/unit/export-tests.cxx | 2 | ||||
-rw-r--r-- | sw/qa/extras/globalfilter/globalfilter.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/drawingml/misccontexts.cxx b/oox/source/drawingml/misccontexts.cxx index 93d2c8ee411b..6c05654e5d14 100644 --- a/oox/source/drawingml/misccontexts.cxx +++ b/oox/source/drawingml/misccontexts.cxx @@ -630,7 +630,7 @@ ContextHandlerRef BlipExtensionContext::onCreateContext(sal_Int32 nElement, cons // Read the graphic from the fragment path auto xGraphic = getFilter().getGraphicHelper().importEmbeddedGraphic(aFragmentPath); - // Overwrite the fill graphic with the one contining SVG + // Overwrite the fill graphic with the one containing SVG mrBlipProps.mxFillGraphic = xGraphic; if (mpBlipFill) mpBlipFill->mxGraphic = xGraphic; diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx index 428b09e983a1..7ee6e3a5e8cd 100644 --- a/sd/qa/unit/export-tests.cxx +++ b/sd/qa/unit/export-tests.cxx @@ -1959,7 +1959,7 @@ CPPUNIT_TEST_FIXTURE(SdExportTest, testSvgImageSupport) // Access the Graphic Graphic aGraphic(xGraphic); - // Check if it contian a VectorGraphicData struct + // Check if it contains a VectorGraphicData struct auto pVectorGraphic = aGraphic.getVectorGraphicData(); CPPUNIT_ASSERT_MESSAGE(sFailedMessage.getStr(), pVectorGraphic); diff --git a/sw/qa/extras/globalfilter/globalfilter.cxx b/sw/qa/extras/globalfilter/globalfilter.cxx index 9d7c28b83ff8..7442de87f6d3 100644 --- a/sw/qa/extras/globalfilter/globalfilter.cxx +++ b/sw/qa/extras/globalfilter/globalfilter.cxx @@ -2251,7 +2251,7 @@ void Test::testSvgImageSupport() // Access the Graphic Graphic aGraphic(xGraphic); - // Check if it contian a VectorGraphicData struct + // Check if it contains a VectorGraphicData struct auto pVectorGraphic = aGraphic.getVectorGraphicData(); CPPUNIT_ASSERT_MESSAGE(sFailedMessage.getStr(), pVectorGraphic); |