summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx4
-rw-r--r--basegfx/source/matrix/b3dhommatrix.cxx4
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;