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

André Hentschel nerv at dawncrow.de
Tue Oct 25 12:39:22 CDT 2011


---
 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 de7b78b..124b264 100644
--- a/dlls/winex11.drv/xrender.c
+++ b/dlls/winex11.drv/xrender.c
@@ -3136,10 +3136,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();
 }
 
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list