Actually print dwExStyle in case of a mismatch

Dmitry Timoshkov dmitry at baikal.ru
Tue Mar 15 19:36:24 CST 2005


Hello,

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Actually print dwExStyle in case of a mismatch.

--- cvs/hq/wine/dlls/user/tests/win.c	Tue Mar 15 00:07:08 2005
+++ wine/dlls/user/tests/win.c	Wed Mar 16 01:32:39 2005
@@ -622,7 +622,7 @@ static void verify_window_info(HWND hwnd
     ok(info->dwStyle == (DWORD)GetWindowLongA(hwnd, GWL_STYLE),
        "wrong dwStyle: %08lx != %08lx\n", info->dwStyle, GetWindowLongA(hwnd, GWL_STYLE));
     ok(info->dwExStyle == (DWORD)GetWindowLongA(hwnd, GWL_EXSTYLE),
-       "wrong dwExStyle: %08lx != %08lx\n", info->dwStyle, GetWindowLongA(hwnd, GWL_EXSTYLE));
+       "wrong dwExStyle: %08lx != %08lx\n", info->dwExStyle, GetWindowLongA(hwnd, GWL_EXSTYLE));
     status = (GetActiveWindow() == hwnd) ? WS_ACTIVECAPTION : 0;
     ok(info->dwWindowStatus == status, "wrong dwWindowStatus: %04lx != %04lx\n",
        info->dwWindowStatus, status);






More information about the wine-patches mailing list