Re: Get rid of W-A calls: LoadImageW

2002-11-20 Thread Dimitrie O. Paun
On November 19, 2002 04:19 pm, Huw D M Davies wrote: I don't see the point of this at all. Why does it matter that we're calling CreateDCA here? it's not as if we're losing information by converting a Unicode to an Ascii string. Personally, I think it's much easier to say, as a policy thing:

Re: Get rid of W-A calls: LoadImageW

2002-11-19 Thread Huw D M Davies
On Tue, Nov 19, 2002 at 09:10:31PM +0100, Stefan Leichter wrote: Changelog replaced CreateDCA by CreateDCW in LoadImageW to Get rid of W-A calls Index: wine/windows/cursoricon.c === RCS file:

RE: Get rid of W-A calls: LoadImageW

2002-11-19 Thread Patrik Stridvall
Index: wine/windows/cursoricon.c [snip] -if (!screen_dc) screen_dc = CreateDCA( DISPLAY, NULL, NULL, NULL ); +if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, [snip] I don't see the point of this at all. Why does it matter that we're calling CreateDCA here? it's not as