diff options
author | obo <obo@openoffice.org> | 2010-11-24 16:52:49 +0100 |
---|---|---|
committer | obo <obo@openoffice.org> | 2010-11-24 16:52:49 +0100 |
commit | baa3cdb1a532bb79ec3fbfbc23cbb4ee4b566308 (patch) | |
tree | d500edf7d3417f560ec13377d88c392d25e511be | |
parent | 2ca22cab454eb1438a58f6015301db453f1cbe84 (diff) |
#i115761# Impress freezes opening the attached odp file(s)
Notes
Notes:
split repo tag: libs-gui_ooo/OOO330_m17
-rw-r--r-- | basegfx/source/polygon/b2dtrapezoid.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx index c1e0f7f6c7c1..d89ec7c6cf73 100644 --- a/basegfx/source/polygon/b2dtrapezoid.cxx +++ b/basegfx/source/polygon/b2dtrapezoid.cxx @@ -798,6 +798,7 @@ namespace basegfx if(splitEdgeAtGivenPoint(aLeft, *pNewLeft, aCurrent)) { maNewPoints.push_back(pNewLeft); + bDone = true; } else { @@ -809,13 +810,12 @@ namespace basegfx if(splitEdgeAtGivenPoint(aRight, *pNewRight, aCurrent)) { maNewPoints.push_back(pNewRight); + bDone = true; } else { delete pNewRight; } - - bDone = true; } } |