summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2017-02-23 12:37:29 +0100
committerDavid Tardon <dtardon@redhat.com>2017-02-23 14:50:13 +0100
commita3f2bf61d93c3f599ed24039632055c4dbdf80e5 (patch)
tree28fbd07a3c676b11aff5c92a6c748d960535ef5c /basegfx
parentbaf043318e83e768abe4ed7ae1c45bb75c0197e3 (diff)
change intervall -> interval
Change-Id: Ib211619428f16304603d9c0a9fce0b22dde2a617
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dpolygonclipper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolygonclipper.cxx b/basegfx/source/polygon/b2dpolygonclipper.cxx
index 2ec349e5b0e6..64190052d855 100644
--- a/basegfx/source/polygon/b2dpolygonclipper.cxx
+++ b/basegfx/source/polygon/b2dpolygonclipper.cxx
@@ -581,7 +581,7 @@ namespace basegfx
else if((clip&0x0f) && (clip&0xf0)==0) { // curr is inside, next is outside
// direction vector from 'current' to 'next', *not* normalized
- // to bring 't' into the [0<=x<=1] intervall.
+ // to bring 't' into the [0<=x<=1] interval.
::basegfx::B2DPoint dir((*next)-(*curr));
double denominator = ( pPlane->nx*dir.getX() +
@@ -600,7 +600,7 @@ namespace basegfx
else if((clip&0x0f)==0 && (clip&0xf0)) { // curr is outside, next is inside
// direction vector from 'current' to 'next', *not* normalized
- // to bring 't' into the [0<=x<=1] intervall.
+ // to bring 't' into the [0<=x<=1] interval.
::basegfx::B2DPoint dir((*next)-(*curr));
double denominator = ( pPlane->nx*dir.getX() +