user: Fixed a broken trace in the dialog test.

This commit is contained in:
Alexandre Julliard 2006-05-18 16:32:49 +02:00
parent 2ff505c2cf
commit c16ca72210
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ static BOOL CreateWindows (HINSTANCE hinst)
{
style = GetWindowLong (hwnd[p->id], GWL_STYLE);
exstyle = GetWindowLong (hwnd[p->id], GWL_EXSTYLE);
if (style == p->style && exstyle == p->exstyle)
if (style != p->style || exstyle != p->exstyle)
{
trace ("Style mismatch at %d: %8.8lx %8.8lx cf %8.8lx %8.8lx\n", p->id, style, exstyle, p->style, p->exstyle);
}