summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/salgdilayout.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-08-31 20:20:18 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-09-01 07:43:02 +0200
commit4977b95a69fbcefb4cf415cdfb86665e5d6b5abb (patch)
treec84e6c56856fbe6bb3f59575ce39c00351080150 /vcl/source/gdi/salgdilayout.cxx
parent21f52dc70e0f74adc559375f560dff969b9498de (diff)
Fix typos
Change-Id: I886178782ebfaaa90b7b14be529210dcbee4dd7a Reviewed-on: https://gerrit.libreoffice.org/59883 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/source/gdi/salgdilayout.cxx')
-rw-r--r--vcl/source/gdi/salgdilayout.cxx4
1 files changed, 2 insertions, 2 deletions
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;
}