>From 12b8db0750f78e02f8d76486f7dc5b5249264d5d 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 patch adds PS_USERSTYLE support and removes FIXME from winex11.drv. However, it does not address printing, so FIXME is moved here so that it's not missing. --- dlls/wineps.drv/pen.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) --------------1.7.3.4 Content-Type: text/x-patch; name="0003-wineps.drv-Add-FIXME-for-PS_USERSTYLE-support.txt" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0003-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--