sc/source/ui/inc/SparklineRenderer.hxx | 6 +++--- tools/qa/cppunit/test_guid.cxx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 0f1ca9e3c5d9df15e71171086612624baea9aaca Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Tue Apr 5 08:27:48 2022 +0200 Commit: Andrea Gelmini <andrea.gelm...@gelma.net> CommitDate: Tue Apr 5 21:46:05 2022 +0200 Fix typos Change-Id: Ifed6fa039466e580d911af91288c4a37bce08aae Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132560 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <andrea.gelm...@gelma.net> diff --git a/sc/source/ui/inc/SparklineRenderer.hxx b/sc/source/ui/inc/SparklineRenderer.hxx index 9f697a6002b2..e69ba51e8afa 100644 --- a/sc/source/ui/inc/SparklineRenderer.hxx +++ b/sc/source/ui/inc/SparklineRenderer.hxx @@ -36,7 +36,7 @@ struct SparklineValue { None, // No action on the value Skip, // Skip the value - Interpolate // Intrpolate the value + Interpolate // Interpolate the value }; double maValue; @@ -163,9 +163,9 @@ public: void reverse() { std::reverse(maValueList.begin(), maValueList.end()); } }; -/** Iterator to traverse the addresses in a range if the range is one dimesional. +/** Iterator to traverse the addresses in a range if the range is one dimensional. * - * The direction to traverse is detcted automatically or hasNext returns + * The direction to traverse is detected automatically or hasNext returns * false if it is not possible to detect. * */ diff --git a/tools/qa/cppunit/test_guid.cxx b/tools/qa/cppunit/test_guid.cxx index 39c23080e1e7..177e58591ba7 100644 --- a/tools/qa/cppunit/test_guid.cxx +++ b/tools/qa/cppunit/test_guid.cxx @@ -94,7 +94,7 @@ public: sal_uInt8 pArray1[16] = { 1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 5, 5, 5, 5 }; Guid aGuid1(pArray1); - // test copy contructor + // test copy constructor Guid aGuid2(aGuid1); CPPUNIT_ASSERT_EQUAL(aGuid1, aGuid2); CPPUNIT_ASSERT(std::equal(aGuid1.cbegin(), aGuid1.cend(), aGuid2.cbegin(), aGuid2.cend()));