summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-04-17 02:01:20 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-04-17 02:41:14 +1000
commit97ce12cd2ef1805a68d210dd41ab2ae3371a8d06 (patch)
tree04b3364148da28653b1ed592bec94906a91418e3
parent2024224a4ee351841f50a6f7b8a267f605a17096 (diff)
Remove commented out code in polyline.cxx
Change-Id: I400d38ccb2e87c6435bc767c13a52beb62baa435
-rw-r--r--vcl/source/outdev/polyline.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/vcl/source/outdev/polyline.cxx b/vcl/source/outdev/polyline.cxx
index b9da23e110d1..97dab0fe8062 100644
--- a/vcl/source/outdev/polyline.cxx
+++ b/vcl/source/outdev/polyline.cxx
@@ -234,21 +234,6 @@ void OutputDevice::ImplDrawPolyLineWithLineInfo(const Polygon& rPoly, const Line
Polygon aPoly = ImplLogicToDevicePixel( rPoly );
- // #100127# LineInfo is not curve-safe, subdivide always
-
- // What shall this mean? It's wrong to subdivide here when the
- // polygon is a fat line. In that case, the painted geometry
- // WILL be much different.
- // I also have no idea how this could be related to the given ID
- // which reads 'consolidate boost versions' in the task description.
- // Removing.
-
- //if( aPoly.HasFlags() )
- //{
- // aPoly = ImplSubdivideBezier( aPoly );
- // nPoints = aPoly.GetSize();
- //}
-
// we need a graphics
if ( !mpGraphics && !ImplGetGraphics() )
return;