Module: wine Branch: master Commit: f5531dc3473812c35f9be9cb5e5b70872ef0fdf3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f5531dc3473812c35f9be9cb5e...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Tue May 3 16:58:57 2016 +0300
user32/tests: Fix a typo in comment.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/user32/tests/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/user32/tests/menu.c b/dlls/user32/tests/menu.c index 65c8e93..e56cdc3 100644 --- a/dlls/user32/tests/menu.c +++ b/dlls/user32/tests/menu.c @@ -819,7 +819,7 @@ static void test_menu_ownerdraw(void) ok( MOD_rc[0].right - MOD_rc[0].left == 2 * MOD_avec + MOD_SIZE, "width of owner drawn menu item is wrong. Got %d expected %d\n", MOD_rc[0].right - MOD_rc[0].left , 2*MOD_avec + MOD_SIZE); - /* test hight */ + /* test height */ ok( MOD_rc[0].bottom - MOD_rc[0].top == GetSystemMetrics( SM_CYMENU) - 1, "Height of owner drawn menu item is wrong. Got %d expected %d\n", MOD_rc[0].bottom - MOD_rc[0].top, GetSystemMetrics( SM_CYMENU) - 1);