Janitorial controls/menu.c W->A cleanup

Tony Lambregts tony_lambregts at telusplanet.net
Sat Mar 1 17:13:53 CST 2003


In a shameless attempt to get something into CVS I thought I would do 
some janitorial work.

Change Log:  Janitorial. Get rid of W->A call

Files Changed: controls/menu.c

-- 

Tony Lambregts

-------------- next part --------------
Index: controls/menu.c
===================================================================
RCS file: /home/wine/wine/controls/menu.c,v
retrieving revision 1.161
diff -u -r1.161 menu.c
--- controls/menu.c	16 Jan 2003 01:17:34 -0000	1.161
+++ controls/menu.c	1 Mar 2003 22:44:08 -0000
@@ -3995,9 +3995,9 @@
 
 
 /**********************************************************************
- *	    LoadMenuIndirectA    (USER32.@)
+ *	    LoadMenuIndirectW    (USER32.@)
  */
-HMENU WINAPI LoadMenuIndirectA( LPCVOID template )
+HMENU WINAPI LoadMenuIndirectW( LPCVOID template )
 {
     HMENU hMenu;
     WORD version, offset;
@@ -4036,12 +4036,11 @@
 
 
 /**********************************************************************
- *	    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 );
 }
 
 


More information about the wine-patches mailing list