gdiplus: Fix point conversion in GdipCreateLineBrushI.

oldstable
Vincent Povirk 2010-10-30 13:59:21 -05:00 committed by Alexandre Julliard
parent f3dcfa19a0
commit bb444e81cc
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ GpStatus WINGDIPAPI GdipCreateLineBrushI(GDIPCONST GpPoint* startpoint,
stF.X = (REAL)startpoint->X;
stF.Y = (REAL)startpoint->Y;
endF.X = (REAL)endpoint->X;
endF.X = (REAL)endpoint->Y;
endF.Y = (REAL)endpoint->Y;
return GdipCreateLineBrush(&stF, &endF, startcolor, endcolor, wrap, line);
}