summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/source/core/opencl/op_statistical.cxx2
-rw-r--r--vcl/source/gdi/salgdilayout.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/opencl/op_statistical.cxx b/sc/source/core/opencl/op_statistical.cxx
index 26495f90f852..afe9de6a5ee8 100644
--- a/sc/source/core/opencl/op_statistical.cxx
+++ b/sc/source/core/opencl/op_statistical.cxx
@@ -3514,7 +3514,7 @@ void OpGeoMean::GenSlidingWindowFunction(
ss << " current_count += count_buf[0];\n";
ss << " }\n";
// ss << "if(writePos == 14 && lidx ==0)\n";
- //ss <<"printf(\"\\n********************sum is is %f, count is%d\",current_sum,current_count);\n";
+ //ss <<"printf(\"\\n********************sum is %f, count is%d\",current_sum,current_count);\n";
ss << " barrier(CLK_LOCAL_MEM_FENCE);\n";
ss << " }\n";
}else
diff --git a/vcl/source/gdi/salgdilayout.cxx b/vcl/source/gdi/salgdilayout.cxx
index 64fba8edf01d..7136860c583a 100644
--- a/vcl/source/gdi/salgdilayout.cxx
+++ b/vcl/source/gdi/salgdilayout.cxx
@@ -477,7 +477,7 @@ const basegfx::B2DHomMatrix& SalGraphics::getMirror( const OutputDevice* i_pOutD
// // mirror this window back
// double devX = w-i_pOutDev->GetOutputWidthPixel()-i_pOutDev->GetOutOffXPixel(); // re-mirrored mnOutOffX
// aRet.setX( devX + (i_rPoint.getX() - i_pOutDev->GetOutOffXPixel()) );
- // I do not reaaly understand the comment 'mirror this window back', so cannot guarantee
+ // I do not really understand the comment 'mirror this window back', so cannot guarantee
// that this works as before, but I have reduced this (by re-placing and re-formatting) to
// a simple translation:
const_cast<SalGraphics*>(this)->m_aLastMirror = basegfx::utils::createTranslateB2DHomMatrix(
@@ -513,7 +513,7 @@ basegfx::B2DHomMatrix SalGraphics::mirror( const basegfx::B2DHomMatrix& i_rMatri
const basegfx::B2DHomMatrix& rMirror(getMirror(pOutDev));
// Apply mirror to given matrix by multiply from left ('after' i_rMatrix).
- // Identity chechs and fast-paths are in the operator
+ // Identity checks and fast-paths are in the operator
return rMirror * i_rMatrix;
}