On Fri May 13 22:57:37 2022 +0000, **** wrote:
Zebediah Figura replied on the mailing list:
On 5/12/22 07:51, Pedro Perdigão wrote: > @@ -8186,7 +8187,10 @@ static void check_update_rgn_( int line, HWND hwnd, HRGN hrgn ) > ok( ret != ERROR, "GetUpdateRgn failed\n" ); > if (ret == NULLREGION) > { > - ok_(__FILE__,line)( !hrgn, "Update region shouldn't be empty\n" ); > + if(todo) > + todo_wine ok_(__FILE__,line)( !hrgn, "Update region shouldn't be empty\n" ); > + else > + ok_(__FILE__,line)( !hrgn, "Update region shouldn't be empty\n" ); > } > else > { This was already committed, but for future reference, there's a "todo_wine_if()" macro for this.
Ok, thanks. But this changes was removed by commit 1146bde3