Commit e674ede0 authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Fixed wrong arg type.

parent 91d1608a
......@@ -3555,7 +3555,7 @@ void WINAPI EndMenu(void)
HMENU16 WINAPI LookupMenuHandle( HMENU16 hmenu, INT16 id )
{
HMENU32 hmenu32 = hmenu;
INT32 id32 = id;
UINT32 id32 = id;
if (!MENU_FindItem( &hmenu32, &id32, MF_BYCOMMAND )) return 0;
else return hmenu32;
}
......
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