Re: patch for ExtTextOut called on open path
<Dave_Belanger(a)cimmetry.com> wrote:
ChangeLog:
Call the ExtTextOut callback even if on an open path. That check that I removed was causing some text to not be displayed from playing various EMFs that we use for testing.
Dave Belanger: dave.belanger(a)cimmetry.com
--- wine-20030911/objects/text.c Wed Oct 8 17:05:44 2003 +++ wine/objects/text.c Wed Oct 8 17:06:06 2003 @@ -155,9 +155,7 @@ DC * dc = DC_GetDCUpdate( hdc ); if (dc) { - if(PATH_IsPathOpen(dc->path)) - FIXME("called on an open path\n"); - else if(dc->funcs->pExtTextOut) + if(dc->funcs->pExtTextOut)
Please do not remove that FIXME, it's on purpose there, to remind that there is a not implemented functionality and annoy enough somebody that he implements it eventually. -- Dmitry.
participants (1)
-
Dmitry Timoshkov