summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon
diff options
context:
space:
mode:
authorRene Engelhard <rene@debian.org>2010-11-26 17:50:30 +0100
committerRene Engelhard <rene@debian.org>2010-11-26 17:50:30 +0100
commit47c176eff33e66895b6f831e9ab35a29b79d04d8 (patch)
treeb9e249007202d6bbc047c032660c4f002274b27b /basegfx/source/polygon
parentd6e194f0c6aa9d39dfa5e6f5fb221f49d7626b91 (diff)
parent5529d7947ce3ceabf072dc2fd4178afba356a590 (diff)
Merge branch 'libreoffice-3-3'
Diffstat (limited to 'basegfx/source/polygon')
-rw-r--r--basegfx/source/polygon/b2dtrapezoid.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx
index 261f045b4a7f..f095a6658119 100644
--- a/basegfx/source/polygon/b2dtrapezoid.cxx
+++ b/basegfx/source/polygon/b2dtrapezoid.cxx
@@ -799,6 +799,7 @@ namespace basegfx
if(splitEdgeAtGivenPoint(aLeft, *pNewLeft, aCurrent))
{
maNewPoints.push_back(pNewLeft);
+ bDone = true;
}
else
{
@@ -810,13 +811,12 @@ namespace basegfx
if(splitEdgeAtGivenPoint(aRight, *pNewRight, aCurrent))
{
maNewPoints.push_back(pNewRight);
+ bDone = true;
}
else
{
delete pNewRight;
}
-
- bDone = true;
}
}