Gerald Pfeifer : winex11: Remove two unused parameters from BITBLT_GetSrcArea().

Alexandre Julliard julliard at winehq.org
Mon Jun 23 07:35:32 CDT 2008


Module: wine
Branch: master
Commit: 773d53d82e0533d501ce91558cfefeef81bdcb9c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=773d53d82e0533d501ce91558cfefeef81bdcb9c

Author: Gerald Pfeifer <gerald at pfeifer.com>
Date:   Sat Jun 21 20:13:00 2008 +0200

winex11: Remove two unused parameters from BITBLT_GetSrcArea().

---

 dlls/winex11.drv/bitblt.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/winex11.drv/bitblt.c b/dlls/winex11.drv/bitblt.c
index d2ff6fe..8bbc252 100644
--- a/dlls/winex11.drv/bitblt.c
+++ b/dlls/winex11.drv/bitblt.c
@@ -909,7 +909,7 @@ static int BITBLT_GetSrcAreaStretch( X11DRV_PDEVICE *physDevSrc, X11DRV_PDEVICE
  * pixels to Windows colors.
  */
 static int BITBLT_GetSrcArea( X11DRV_PDEVICE *physDevSrc, X11DRV_PDEVICE *physDevDst,
-                              Pixmap pixmap, GC gc, INT xSrc, INT ySrc, RECT *visRectSrc )
+                              Pixmap pixmap, GC gc, RECT *visRectSrc )
 {
     XImage *imageSrc, *imageDst;
     register INT x, y;
@@ -1443,7 +1443,7 @@ static BOOL BITBLT_InternalStretchBlt( X11DRV_PDEVICE *physDevDst, INT xDst, INT
                                       &visRectSrc, &visRectDst );
         else
             BITBLT_GetSrcArea( physDevSrc, physDevDst, pixmaps[SRC], tmpGC,
-                               xSrc, ySrc, &visRectSrc );
+                               &visRectSrc );
     }
 
     if (useDst) BITBLT_GetDstArea( physDevDst, pixmaps[DST], tmpGC, &visRectDst );




More information about the wine-cvs mailing list