[Libreoffice-commits] core.git: binaryurp/source sw/source tools/qa

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 25 06:18:43 UTC 2020


 binaryurp/source/bridge.cxx                           |    2 +-
 sw/source/core/text/itrform2.cxx                      |    2 +-
 tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx  |    2 +-
 tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 760980b0b510acac555f0c252fbaa10a4751bded
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Wed Jun 24 16:32:12 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Jun 25 08:18:10 2020 +0200

    Fix typos
    
    Change-Id: I2bccc7beb2e9dfccd84b118a33a7aee9753a8be1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97040
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx
index 2534dfa1a873..4a4499de0ef4 100644
--- a/binaryurp/source/bridge.cxx
+++ b/binaryurp/source/bridge.cxx
@@ -977,7 +977,7 @@ void Bridge::makeReleaseCall(
     OUString const & oid, css::uno::TypeDescription const & type)
 {
     //HACK to decouple the processing of release calls from all other threads.  Normally, sending
-    // the release request should use the current thread's TID (via AttachThread), so that that
+    // the release request should use the current thread's TID (via AttachThread), so that
     // asynchronous request would be processed by a physical thread that is paired with the physical
     // thread processing the normal synchronous call stack (see ThreadIdHashMap in
     // cppu/source/threadpool/threadpool.hxx).  However, that can lead to deadlock when a thread
diff --git a/sw/source/core/text/itrform2.cxx b/sw/source/core/text/itrform2.cxx
index 61621611fb73..aec314e56b8b 100644
--- a/sw/source/core/text/itrform2.cxx
+++ b/sw/source/core/text/itrform2.cxx
@@ -330,7 +330,7 @@ void SwTextFormatter::InsertPortion( SwTextFormatInfo &rInf,
 
         if (GetTextFrame()->GetDoc().getIDocumentSettingAccess().get(DocumentSettingId::MS_WORD_COMP_MIN_LINE_HEIGHT_BY_FLY))
         {
-            // For DOCX with compat=14 the only shape in line defines height of the line inspite of used font
+            // For DOCX with compat=14 the only shape in line defines height of the line in spite of used font
             if (pLast->IsFlyCntPortion() && pPor->IsTextPortion() && pPor->GetLen() == TextFrameIndex(0))
             {
                 m_pCurr->SetAscent(pLast->GetAscent());
diff --git a/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx b/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx
index 13dd48d2176e..7455d0191844 100644
--- a/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx
+++ b/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx
@@ -40,7 +40,7 @@ void CpuRuntimeDetection_SSE2::testCpuRuntimeDetection()
 
 void CpuRuntimeDetection_SSE2::checkSSE2()
 {
-    // Try some SSE2 intrinsics calcualtion
+    // Try some SSE2 intrinsics calculation
     __m128i a = _mm_set1_epi32(15);
     __m128i b = _mm_set1_epi32(15);
     __m128i c = _mm_xor_si128(a, b);
diff --git a/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx b/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx
index 1d730d99e985..9e63e59c7835 100644
--- a/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx
+++ b/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx
@@ -40,7 +40,7 @@ void CpuRuntimeDetection_SSSE3::testCpuRuntimeDetection()
 
 void CpuRuntimeDetection_SSSE3::checkSSSE3()
 {
-    // Try some SSSE3 intrinsics calcualtion
+    // Try some SSSE3 intrinsics calculation
     __m128i a = _mm_set1_epi32(3);
     __m128i b = _mm_set1_epi32(3);
     __m128i c = _mm_maddubs_epi16(a, b);


More information about the Libreoffice-commits mailing list