diff options
author | Andras Timar <andras.timar@collabora.com> | 2014-02-06 23:21:40 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-02-06 23:22:30 +0100 |
commit | ac6e8ac7e407887a18bca6c835f85e372a4d0932 (patch) | |
tree | 4011854fc6beb6c4bf03fc278efeeffddedae7d0 /basegfx | |
parent | 31ae0011352faa834da8969559430935e81d479f (diff) |
typo fixes in comments
Change-Id: Idd49478d59cd062118fbf8e99d1c8bc5250013fc
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/matrix/b2dhommatrix.cxx | 4 | ||||
-rw-r--r-- | basegfx/source/matrix/b3dhommatrix.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx index 2d89e41356a5..7b76d075399f 100644 --- a/basegfx/source/matrix/b2dhommatrix.cxx +++ b/basegfx/source/matrix/b2dhommatrix.cxx @@ -230,7 +230,7 @@ namespace basegfx void B2DHomMatrix::shearX(double fSx) { - // #i76239# do not test againt 1.0, but against 0.0. We are talking about a value not on the diagonal (!) + // #i76239# do not test against 1.0, but against 0.0. We are talking about a value not on the diagonal (!) if(!fTools::equalZero(fSx)) { Impl2DHomMatrix aShearXMat; @@ -243,7 +243,7 @@ namespace basegfx void B2DHomMatrix::shearY(double fSy) { - // #i76239# do not test againt 1.0, but against 0.0. We are talking about a value not on the diagonal (!) + // #i76239# do not test against 1.0, but against 0.0. We are talking about a value not on the diagonal (!) if(!fTools::equalZero(fSy)) { Impl2DHomMatrix aShearYMat; diff --git a/basegfx/source/matrix/b3dhommatrix.cxx b/basegfx/source/matrix/b3dhommatrix.cxx index c4b691f6ca02..6e496d1298aa 100644 --- a/basegfx/source/matrix/b3dhommatrix.cxx +++ b/basegfx/source/matrix/b3dhommatrix.cxx @@ -235,7 +235,7 @@ namespace basegfx void B3DHomMatrix::shearXY(double fSx, double fSy) { - // #i76239# do not test againt 1.0, but against 0.0. We are talking about a value not on the diagonal (!) + // #i76239# do not test against 1.0, but against 0.0. We are talking about a value not on the diagonal (!) if(!fTools::equalZero(fSx) || !fTools::equalZero(fSy)) { Impl3DHomMatrix aShearXYMat; @@ -249,7 +249,7 @@ namespace basegfx void B3DHomMatrix::shearXZ(double fSx, double fSz) { - // #i76239# do not test againt 1.0, but against 0.0. We are talking about a value not on the diagonal (!) + // #i76239# do not test against 1.0, but against 0.0. We are talking about a value not on the diagonal (!) if(!fTools::equalZero(fSx) || !fTools::equalZero(fSz)) { Impl3DHomMatrix aShearXZMat; |