sd/qa/unit/AnnotationTest.cxx | 4 ++-- sfx2/source/doc/objserv.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit 5b33bc443859d376efd578f070e3d3d81c93fd24 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Thu Jun 27 08:23:25 2024 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Fri Jun 28 09:11:07 2024 +0200 Fix typo Change-Id: I8a970902688bdece46774e73b76ee2bdeea3de57 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169608 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/sfx2/source/doc/objserv.cxx b/sfx2/source/doc/objserv.cxx index f4bcbd1b0496..428e4d2d9d0c 100644 --- a/sfx2/source/doc/objserv.cxx +++ b/sfx2/source/doc/objserv.cxx @@ -1294,7 +1294,7 @@ void SfxObjectShell::ExecFile_Impl(SfxRequest &rReq) case SID_CLOSEDOC: { - // cancel requests during SfxApplication is closing or quiting. + // cancel requests during SfxApplication is closing or quitting. SfxAppData_Impl* pAppData = SfxGetpApp()->Get_Impl(); if (pAppData && (pAppData->bInQuit || pAppData->bClosingDocs)) { commit 0381750784107b28926180f6e67ca18c60e30384 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Thu Jun 27 23:19:02 2024 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Fri Jun 28 09:10:52 2024 +0200 Fix typos Change-Id: I0418baac572db21f3b87af6281572e61b983e11d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169689 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/sd/qa/unit/AnnotationTest.cxx b/sd/qa/unit/AnnotationTest.cxx index a1b73be924ba..563fb2122018 100644 --- a/sd/qa/unit/AnnotationTest.cxx +++ b/sd/qa/unit/AnnotationTest.cxx @@ -232,12 +232,12 @@ CPPUNIT_TEST_FIXTURE(AnnotationTest, testAnnotationPositionUpdate) // Move the object pObject->Move({ 200, 200 }); - // Object at a new postion + // Object at a new position CPPUNIT_ASSERT_EQUAL(tools::Long(200), pObject->GetLogicRect().Left()); // in 100th of an mm (hmm) CPPUNIT_ASSERT_EQUAL(tools::Long(200), pObject->GetLogicRect().Top()); - // Position of the annotation whould be the same as the object (2.0 mm equals 200 hmm) + // Position of the annotation would be the same as the object (2.0 mm equals 200 hmm) CPPUNIT_ASSERT_DOUBLES_EQUAL(2.0, pAnnotationData->mxAnnotation->getPosition().X, 1E-4); // mm CPPUNIT_ASSERT_DOUBLES_EQUAL(2.0, pAnnotationData->mxAnnotation->getPosition().Y, 1E-4);