gdi32: Fix typos for GET_DC_PHYSDEV.
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
def07b3f69
commit
3ba4412be6
|
@ -876,7 +876,7 @@ static BOOL CDECL windrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT b
|
|||
BOOL ret;
|
||||
|
||||
lock_surface( physdev );
|
||||
dev = GET_NEXT_PHYSDEV( dev, pArc );
|
||||
dev = GET_NEXT_PHYSDEV( dev, pArcTo );
|
||||
ret = dev->funcs->pArcTo( dev, left, top, right, bottom, xstart, ystart, xend, yend );
|
||||
unlock_surface( physdev );
|
||||
return ret;
|
||||
|
|
|
@ -365,7 +365,7 @@ BOOL CDECL EMFDRV_ScaleWindowExtEx( PHYSDEV dev, INT xNum, INT xDenom, INT yNum,
|
|||
|
||||
DWORD CDECL EMFDRV_SetLayout( PHYSDEV dev, DWORD layout )
|
||||
{
|
||||
PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetMapMode );
|
||||
PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetLayout );
|
||||
EMFDRV_PDEVICE *physDev = get_emf_physdev( dev );
|
||||
EMRSETLAYOUT emr;
|
||||
DWORD ret;
|
||||
|
|
Loading…
Reference in New Issue