Lotus-Notes redrawing

Martin Kneppe Martin.Kneppe at ruhr-uni-bochum.de
Sat Mar 23 07:03:22 CST 2002


I got a problem using Lotus Ntes where the characters just aren't
printed. ( I think it's bug 428)

I tried to fix that and found in dlls/user/painting.c

 if (!hrgnUpdate)  /* empty region, clip everything */
 {
	hrgnUpdate = CreateRectRgn( 0, 0, 0, 0 );
 }


 The easiest way for me to get my Notes up again was by changing this
 to my default-window size e.g.

 if (!hrgnUpdate)  /* empty region, clip everything */
  {
          hrgnUpdate = CreateRectRgn( 0, 0, 700, 700 );
   }

 which is ok for me.

So my question is, what is the "right way" to get the redraw working
again ?

Greets 

Martin




More information about the wine-devel mailing list