Author: khornicek
Date: Wed Dec  2 15:31:16 2009
New Revision: 44362

URL: http://svn.reactos.org/svn/reactos?rev=44362&view=rev
Log:
- use EngMovePointer when appropriate, fixes mouse in VBox

Modified:
    branches/arwinss/reactos/subsystems/win32/win32k/gre/cursoricon.c

Modified: branches/arwinss/reactos/subsystems/win32/win32k/gre/cursoricon.c
URL: 
http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win32/win32k/gre/cursoricon.c?rev=44362&r1=44361&r2=44362&view=diff
==============================================================================
--- branches/arwinss/reactos/subsystems/win32/win32k/gre/cursoricon.c 
[iso-8859-1] (original)
+++ branches/arwinss/reactos/subsystems/win32/win32k/gre/cursoricon.c 
[iso-8859-1] Wed Dec  2 15:31:16 2009
@@ -20,9 +20,10 @@
     IN RECTL *prcl)
 {
     SURFACE *pSurf = CONTAINING_RECORD(pso, SURFACE, SurfObj);
+    PPDEVOBJ ppdev = GDIDEV(pso);
 
     SURFACE_LockBitmapBits(pSurf);
-    GDIDEVFUNCS(pso).MovePointer(pso, x, y, prcl);
+    ppdev->pfnMovePointer(pso, x, y, prcl);
     SURFACE_UnlockBitmapBits(pSurf);
 }
 


Reply via email to