Re: Quicken/CreateCompatibleBitmap issue revisited

2005-05-09 Thread Dmitry Timoshkov
"Carl Sopchak" <[EMAIL PROTECTED]> wrote: > "Which I guess brings up another point... dlls/gdi/bitmap.c's > CreateCompatibleBitmap shows the aforementioned fixme message if the width or > height exceeds 0x1, and no bitmap is returned. This seems wrong to me on > three counts: (1) MSDN states

Re: Quicken/CreateCompatibleBitmap issue revisited

2005-05-02 Thread Rein Klazes
On Mon, 2 May 2005 09:29:41 -0700 (PDT), you wrote: > Hi Rein, > > > Indeed, what happens if you try this obvious patch: > (snip context) > -if ((width >= 0x1) || (height >= 0x1)) > +if ((height && width >= 0x1) || (width && height >= 0x1)) > > This obvious patch is quite

Re: Quicken/CreateCompatibleBitmap issue revisited

2005-05-02 Thread Juan Lang
Hi Rein, > Indeed, what happens if you try this obvious patch: (snip context) -if ((width >= 0x1) || (height >= 0x1)) +if ((height && width >= 0x1) || (width && height >= 0x1)) This obvious patch is quite wrong, height && width evaluantes to either 0 or 1, same with width

Re: Quicken/CreateCompatibleBitmap issue revisited

2005-04-30 Thread Carl Sopchak
Thanks for the input, Rein. Allowing either a width or height of zero to fall through should result in a 1x1 monochrome bitmap (I haven't tested it, but did read through the code and it looks like that would be returned). However, the other points that I made call into question the need for the

Re: Quicken/CreateCompatibleBitmap issue revisited

2005-04-29 Thread Rein Klazes
On Fri, 29 Apr 2005 10:46:31 -0400, you wrote: > This seems wrong to me on > three counts: (1) MSDN states that if either width or height is zero, a 1x1 > monochrome bitmap is returned Indeed, what happens if you try this obvious patch: >8

Quicken/CreateCompatibleBitmap issue revisited

2005-04-29 Thread Carl Sopchak
In the bug found at http://bugs.winehq.org/show_bug.cgi?id=2096 , I have described an issue that I am having with Quicken Deluxe 2000 when running under Wine. The symptom is that Quicken was crashing HARD when trying to print a partial page of checks on a laser printer. Now, I just get fixme's