comctl32: Fix a typo.

This commit is contained in:
James Hawkins 2008-09-08 00:51:03 -05:00 committed by Alexandre Julliard
parent 106791c610
commit 3e2ac662f1
1 changed files with 1 additions and 1 deletions

View File

@ -870,7 +870,7 @@ static void test_icon_spacing(void)
/* now we can request what the defaults are */ /* now we can request what the defaults are */
r = SendMessage(hwnd, LVM_SETICONSPACING, 0, (LPARAM) MAKELONG(-1, -1)); r = SendMessage(hwnd, LVM_SETICONSPACING, 0, (LPARAM) MAKELONG(-1, -1));
w = LOWORD(r); w = LOWORD(r);
h = LOWORD(r); h = HIWORD(r);
flush_sequences(sequences, NUM_MSG_SEQUENCES); flush_sequences(sequences, NUM_MSG_SEQUENCES);