editeng/qa/unit/ESelectionTest.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 9cf4e435c4131fbfeb241d8f5d73b8b300041b79 Author: Andrea Gelmini <[email protected]> AuthorDate: Thu Dec 28 06:25:59 2023 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Thu Dec 28 10:44:53 2023 +0100 Fix typo Change-Id: Ie4af9884dca493646636dc60a1605a748d50ad1a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161376 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/editeng/qa/unit/ESelectionTest.cxx b/editeng/qa/unit/ESelectionTest.cxx index 2d1f1a807229..27b9256b29d7 100644 --- a/editeng/qa/unit/ESelectionTest.cxx +++ b/editeng/qa/unit/ESelectionTest.cxx @@ -115,7 +115,7 @@ CPPUNIT_TEST_FIXTURE(ESelectionTest, testLess) // Obviously not less CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 2, 0, 2) < ESelection(0, 1, 0, 1)); - // Equal at a point therfore not strictly "<" + // Equal at a point therefore not strictly "<" CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 0, 0, 0) < ESelection(0, 0, 0, 1)); // Strictly "<" @@ -134,7 +134,7 @@ CPPUNIT_TEST_FIXTURE(ESelectionTest, testGreater) // Obviously not greater CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 1, 0, 1) > ESelection(0, 2, 0, 2)); - // Equal at a point therfore not strictly ">" + // Equal at a point therefore not strictly ">" CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 0, 0, 1) > ESelection(0, 0, 0, 0)); // Strictly ">"
