>From edc0facb0873e91dfe6c8be213f852df28c42d9f Mon Sep 17 00:00:00 2001 From: Daniel Santos Date: Tue, 15 Feb 2011 00:22:18 -0600 Subject: wineps.drv: Add FIXME for PS_USERSTYLE support MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1.7.3.4" This is a multi-part message in MIME format. --------------1.7.3.4 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit Previous patches add PS_USERSTYLE support and removes FIXME from winex11.drv and gdi32. However, it does not address printing, so FIXME is moved here so that it's not missing. The result will leave wineps.drv PS_USERSTYLE pens printing solid lines. --- dlls/wineps.drv/pen.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) --------------1.7.3.4 Content-Type: text/x-patch; name="0004-wineps.drv-Add-FIXME-for-PS_USERSTYLE-support.txt" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0004-wineps.drv-Add-FIXME-for-PS_USERSTYLE-support.txt" diff --git a/dlls/wineps.drv/pen.c b/dlls/wineps.drv/pen.c index 55379db..d4ec53b 100644 --- a/dlls/wineps.drv/pen.c +++ b/dlls/wineps.drv/pen.c @@ -113,6 +113,10 @@ HPEN PSDRV_SelectPen( PHYSDEV dev, HPEN hpen ) physDev->pen.dash = PEN_alternate; break; + case PS_USERSTYLE: + FIXME("PS_USERSTYLE is not supported on ps device (printer)\n"); + /* fall through */ + default: physDev->pen.dash = NULL; } --------------1.7.3.4--