Commit ce8c9426 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Don't set the pen width to 1 in X11DRV_PolyLine.

parent c700f90e
...@@ -1017,12 +1017,9 @@ X11DRV_PaintRgn( X11DRV_PDEVICE *physDev, HRGN hrgn ) ...@@ -1017,12 +1017,9 @@ X11DRV_PaintRgn( X11DRV_PDEVICE *physDev, HRGN hrgn )
BOOL BOOL
X11DRV_Polyline( X11DRV_PDEVICE *physDev, const POINT* pt, INT count ) X11DRV_Polyline( X11DRV_PDEVICE *physDev, const POINT* pt, INT count )
{ {
INT oldwidth; int i;
register int i;
XPoint *points; XPoint *points;
if((oldwidth = physDev->pen.width) == 0) physDev->pen.width = 1;
if (!(points = HeapAlloc( GetProcessHeap(), 0, sizeof(XPoint) * count ))) if (!(points = HeapAlloc( GetProcessHeap(), 0, sizeof(XPoint) * count )))
{ {
WARN("No memory to convert POINTs to XPoints!\n"); WARN("No memory to convert POINTs to XPoints!\n");
...@@ -1047,7 +1044,6 @@ X11DRV_Polyline( X11DRV_PDEVICE *physDev, const POINT* pt, INT count ) ...@@ -1047,7 +1044,6 @@ X11DRV_Polyline( X11DRV_PDEVICE *physDev, const POINT* pt, INT count )
} }
HeapFree( GetProcessHeap(), 0, points ); HeapFree( GetProcessHeap(), 0, points );
physDev->pen.width = oldwidth;
return TRUE; return TRUE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment