Commit ccf6204c authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

user32/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 0fc80c7d
...@@ -358,7 +358,7 @@ static void scrollbar_test_default( DWORD style) ...@@ -358,7 +358,7 @@ static void scrollbar_test_default( DWORD style)
if( !(style & WS_VSCROLL)) if( !(style & WS_VSCROLL))
{ {
if (bThemeActive || style != WS_HSCROLL) if (bThemeActive || style != WS_HSCROLL)
todo_wine todo_wine
ok( (winstyle & (WS_HSCROLL|WS_VSCROLL)) == ( style | WS_VSCROLL), ok( (winstyle & (WS_HSCROLL|WS_VSCROLL)) == ( style | WS_VSCROLL),
"unexpected style change %08x/%08x\n", winstyle, style); "unexpected style change %08x/%08x\n", winstyle, style);
else else
...@@ -394,7 +394,7 @@ todo_wine ...@@ -394,7 +394,7 @@ todo_wine
if( !(style & WS_HSCROLL)) if( !(style & WS_HSCROLL))
{ {
if (bThemeActive || style != WS_VSCROLL) if (bThemeActive || style != WS_VSCROLL)
todo_wine todo_wine
ok( (winstyle & (WS_HSCROLL|WS_VSCROLL)) == ( style | WS_HSCROLL), ok( (winstyle & (WS_HSCROLL|WS_VSCROLL)) == ( style | WS_HSCROLL),
"unexpected style change %08x/%08x\n", winstyle, style); "unexpected style change %08x/%08x\n", winstyle, style);
else else
......
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