Cast id to unsigned in GetDlgItem16.

This commit is contained in:
Lawson Whitney 2001-11-12 15:49:38 +00:00 committed by Alexandre Julliard
parent d13e6a9a93
commit 9eaefced36
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ BOOL16 WINAPI EndDialog16( HWND16 hwnd, INT16 retval )
*/ */
HWND16 WINAPI GetDlgItem16( HWND16 hwndDlg, INT16 id ) HWND16 WINAPI GetDlgItem16( HWND16 hwndDlg, INT16 id )
{ {
return WIN_Handle16( GetDlgItem( WIN_Handle32(hwndDlg), id )); return WIN_Handle16( GetDlgItem( WIN_Handle32(hwndDlg), (UINT16) id ));
} }