From 6dc4cb4b7a06d39583be9c25c5b13a898e71fa92 Mon Sep 17 00:00:00 2001 From: Tony Lambregts Date: Tue, 4 Mar 2003 02:14:58 +0000 Subject: [PATCH] Janitorial. Get rid of W->A call. --- controls/menu.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/controls/menu.c b/controls/menu.c index d371637eb3..fb717d6910 100644 --- a/controls/menu.c +++ b/controls/menu.c @@ -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 ); } -- 2.32.0.93.g670b81a890