André Hentschel : user32/tests: Use if(0) instead of a comment to make sure code still compiles.
Module: wine Branch: master Commit: 50c94bf054f10ac879934ae1419ae60af9a1799e URL: http://source.winehq.org/git/wine.git/?a=commit;h=50c94bf054f10ac879934ae141... Author: André Hentschel <nerv(a)dawncrow.de> Date: Tue Jun 29 21:56:45 2010 +0200 user32/tests: Use if(0) instead of a comment to make sure code still compiles. --- dlls/user32/tests/msg.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index eb27800..e0494ef 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -4717,10 +4717,10 @@ static void test_messages(void) ok(hwnd != 0, "Failed to create custom dialog window\n"); ok_sequence(WmCreateCustomDialogSeq, "CreateCustomDialog", TRUE); - /* + if(0) { trace("testing scroll APIs on a visible dialog %p\n", hwnd); test_scroll_messages(hwnd); - */ + } flush_sequence();
participants (1)
-
Alexandre Julliard