Commit 06d399fc authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

comctl32/tests: Don't outdent todo_wine*.

This prevents -Wmisleading-indentation warnings (Mingw GCC11). Signed-off-by: 's avatarEric Pouech <eric.pouech@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 4481d035
......@@ -165,7 +165,7 @@ static void test_image(HBITMAP image, BOOL is_dib, BOOL is_premult, BOOL is_alph
ok(bm.bmBits != NULL, "bmBits is NULL\n");
memcpy(bits, bm.bmBits, 4);
if (is_premult)
todo_wine
todo_wine
ok(bits[0] == 0x05 && bits[1] == 0x09 && bits[2] == 0x0e && bits[3] == 0x44,
"bits: %02x %02x %02x %02x\n", bits[0], bits[1], bits[2], bits[3]);
else if (is_alpha)
......@@ -195,7 +195,7 @@ todo_wine
DeleteDC(hdc);
if (is_premult)
todo_wine
todo_wine
ok(bits[0] == 0x05 && bits[1] == 0x09 && bits[2] == 0x0e && bits[3] == 0x44,
"bits: %02x %02x %02x %02x\n", bits[0], bits[1], bits[2], bits[3]);
else if (is_alpha)
......
......@@ -2728,7 +2728,7 @@ static void test_BTNS_SEP(void)
memset(&button, 0, sizeof(button));
ret = SendMessageA(hwnd, TB_GETBUTTON, 0, (LPARAM)&button);
ok(ret == 1, "Unexpected return value.\n");
todo_wine
todo_wine
ok(button.iBitmap == 8, "Unexpected iBitmap value %d.\n", button.iBitmap);
rebuild_toolbar(&hwnd);
......@@ -2789,7 +2789,7 @@ todo_wine
memset(&button, 0, sizeof(button));
ret = SendMessageA(hwnd, TB_GETBUTTON, 0, (LPARAM)&button);
ok(ret == 1, "Unexpected return value.\n");
todo_wine
todo_wine
ok(button.iBitmap == 8, "Unexpected iBitmap value %d.\n", button.iBitmap);
DestroyWindow(hwnd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment