gdiplus: Remove superfluous cast to self.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-09-28 21:28:05 +02:00 committed by Alexandre Julliard
parent 53cd1a27ad
commit 812eb3c41d

View file

@ -3482,7 +3482,7 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile,
if (flags & 0x8000) if (flags & 0x8000)
{ {
stat = GdipCreateSolidFill(draw->brush.Color, (GpSolidFill**)&solidfill); stat = GdipCreateSolidFill(draw->brush.Color, &solidfill);
if (stat != Ok) if (stat != Ok)
return InvalidParameter; return InvalidParameter;