diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-08-31 20:20:18 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-09-01 07:43:02 +0200 |
commit | 4977b95a69fbcefb4cf415cdfb86665e5d6b5abb (patch) | |
tree | c84e6c56856fbe6bb3f59575ce39c00351080150 | |
parent | 21f52dc70e0f74adc559375f560dff969b9498de (diff) |
Fix typos
Change-Id: I886178782ebfaaa90b7b14be529210dcbee4dd7a
Reviewed-on: https://gerrit.libreoffice.org/59883
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | sc/source/core/opencl/op_statistical.cxx | 2 | ||||
-rw-r--r-- | vcl/source/gdi/salgdilayout.cxx | 4 |
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; } |