diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-10-14 12:22:38 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-10-14 16:30:23 +0200 |
commit | 974a1c84ea354fe712ec09db68266d5a82023c5e (patch) | |
tree | 30e58af0f992dab5c65f64815ed139090445c627 /sw | |
parent | 9f9335ed67fcbb1192140e2761df7404620156c9 (diff) |
Fix typo
Change-Id: I6e1c0f7ef3a99d68c078b1d0c524bad54d240bfe
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157974
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/extras/uiwriter/uiwriter5.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/qa/extras/uiwriter/uiwriter5.cxx b/sw/qa/extras/uiwriter/uiwriter5.cxx index d97e0a8911f0..00371e084678 100644 --- a/sw/qa/extras/uiwriter/uiwriter5.cxx +++ b/sw/qa/extras/uiwriter/uiwriter5.cxx @@ -2255,7 +2255,7 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest5, testTdf157662_AcceptInsertRedlineCutWithDe pEditShell->RejectRedline(6); CPPUNIT_ASSERT_EQUAL(static_cast<SwRedlineTable::size_type>(6), pEditShell->GetRedlineCount()); - // Accept insert that splitted into 4 parts, but separeted to 2-2 parts, with another insert. + // Accept insert that splitted into 4 parts, but separated to 2-2 parts, with another insert. // It will accept only 2 parts, that is not separated. It leave the deletion. pEditShell->AcceptRedline(0); CPPUNIT_ASSERT_EQUAL(static_cast<SwRedlineTable::size_type>(5), pEditShell->GetRedlineCount()); @@ -2282,12 +2282,12 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest5, testTdf157662_RejectInsertRedlineCutWithDe SwEditShell* const pEditShell(pDoc->GetEditShell()); CPPUNIT_ASSERT_EQUAL(static_cast<SwRedlineTable::size_type>(9), pEditShell->GetRedlineCount()); - // Reject the insert that splitted into 3 parts .. reject all 3 of them + // Reject the insert that splitted into 3 parts. reject all 3 of them // it even remove the deletion, that was on the 2. insert... pEditShell->RejectRedline(6); CPPUNIT_ASSERT_EQUAL(static_cast<SwRedlineTable::size_type>(6), pEditShell->GetRedlineCount()); - // Reject insert that splitted into 4 parts, but separeted to 2-2 parts, with another insert. + // Reject insert that splitted into 4 parts, but separated to 2-2 parts, with another insert. // It will reject only 2 parts, that is not separated. It remove the deletion. pEditShell->RejectRedline(0); CPPUNIT_ASSERT_EQUAL(static_cast<SwRedlineTable::size_type>(4), pEditShell->GetRedlineCount()); |