=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: winex11.drv: Remove remaining pixmap prefix to fix compilation without libxrender.

Alexandre Julliard julliard at winehq.org
Tue Oct 25 13:50:29 CDT 2011


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Tue Oct 25 19:39:22 2011 +0200

winex11.drv: Remove remaining pixmap prefix to fix compilation without libxrender.

---

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

diff --git a/dlls/winex11.drv/xrender.c b/dlls/winex11.drv/xrender.c
index 59035d6..8ee3f59 100644
--- a/dlls/winex11.drv/xrender.c
+++ b/dlls/winex11.drv/xrender.c
@@ -3149,10 +3149,10 @@ void X11DRV_XRender_Finalize(void)
 void X11DRV_XRender_CopyBrush(X11DRV_PDEVICE *physDev, X_PHYSBITMAP *physBitmap, int width, int height)
 {
     wine_tsx11_lock();
-    physDev->brush.pixmap = XCreatePixmap(gdi_display, root_window, width, height, physBitmap->pixmap_depth);
+    physDev->brush.pixmap = XCreatePixmap(gdi_display, root_window, width, height, physBitmap->depth);
 
     XCopyArea( gdi_display, physBitmap->pixmap, physDev->brush.pixmap,
-               get_bitmap_gc(physBitmap->pixmap_depth), 0, 0, width, height, 0, 0 );
+               get_bitmap_gc(physBitmap->depth), 0, 0, width, height, 0, 0 );
     wine_tsx11_unlock();
 }
 




More information about the wine-cvs mailing list