Commit 6dc4cb4b authored by Tony Lambregts's avatar Tony Lambregts Committed by Alexandre Julliard

Janitorial. Get rid of W->A call.

parent 7ba0c5f3
......@@ -3995,9 +3995,9 @@ HMENU16 WINAPI LoadMenuIndirect16( LPCVOID template )
/**********************************************************************
* LoadMenuIndirectA (USER32.@)
* LoadMenuIndirectW (USER32.@)
*/
HMENU WINAPI LoadMenuIndirectA( LPCVOID template )
HMENU WINAPI LoadMenuIndirectW( LPCVOID template )
{
HMENU hMenu;
WORD version, offset;
......@@ -4036,12 +4036,11 @@ HMENU WINAPI LoadMenuIndirectA( LPCVOID template )
/**********************************************************************
* LoadMenuIndirectW (USER32.@)
* LoadMenuIndirectA (USER32.@)
*/
HMENU WINAPI LoadMenuIndirectW( LPCVOID template )
HMENU WINAPI LoadMenuIndirectA( LPCVOID template )
{
/* FIXME: is there anything different between A and W? */
return LoadMenuIndirectA( template );
return LoadMenuIndirectW( template );
}
......
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