summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binaryurp/source/bridge.cxx2
-rw-r--r--sw/source/core/text/itrform2.cxx2
-rw-r--r--tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx2
-rw-r--r--tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx2
4 files changed, 4 insertions, 4 deletions
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);