summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRelease Engineering <releng@openoffice.org>2009-12-16 09:40:02 +0100
committerRelease Engineering <releng@openoffice.org>2009-12-16 09:40:02 +0100
commitf452ceb80a315960fea2d589075dd111b69de831 (patch)
tree0976b00f0711896d63b6eb27d7f71c696251991a
parent468ae81185435755888d9c8ae718c0133c6a1253 (diff)
#i107025# fix for WaE
-rw-r--r--vcl/unx/source/gdi/salgdi.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/source/gdi/salgdi.cxx b/vcl/unx/source/gdi/salgdi.cxx
index 029f681c50..5648cb31a2 100644
--- a/vcl/unx/source/gdi/salgdi.cxx
+++ b/vcl/unx/source/gdi/salgdi.cxx
@@ -1793,7 +1793,7 @@ void splitIntersectingSegments( LSVector& rLSVector)
// prepare the result vector
// try to avoid reallocations by guessing a reasonable result size
- rLSVector.reserve( aYMinQueue.size() * 1.5);
+ rLSVector.reserve( aYMinQueue.size() * 3/2 );
// find all intersections
CutPointSet aCutPointSet;