Commit 3ba4412b authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

gdi32: Fix typos for GET_DC_PHYSDEV.

parent def07b3f
...@@ -876,7 +876,7 @@ static BOOL CDECL windrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT b ...@@ -876,7 +876,7 @@ static BOOL CDECL windrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT b
BOOL ret; BOOL ret;
lock_surface( physdev ); 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 ); ret = dev->funcs->pArcTo( dev, left, top, right, bottom, xstart, ystart, xend, yend );
unlock_surface( physdev ); unlock_surface( physdev );
return ret; return ret;
......
...@@ -365,7 +365,7 @@ BOOL CDECL EMFDRV_ScaleWindowExtEx( PHYSDEV dev, INT xNum, INT xDenom, INT yNum, ...@@ -365,7 +365,7 @@ BOOL CDECL EMFDRV_ScaleWindowExtEx( PHYSDEV dev, INT xNum, INT xDenom, INT yNum,
DWORD CDECL EMFDRV_SetLayout( PHYSDEV dev, DWORD layout ) 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 ); EMFDRV_PDEVICE *physDev = get_emf_physdev( dev );
EMRSETLAYOUT emr; EMRSETLAYOUT emr;
DWORD ret; DWORD ret;
......
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