mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
Put back revision 23192
svn path=/trunk/; revision=23222
This commit is contained in:
parent
07b6ddc2b6
commit
db1b46702a
1 changed files with 2 additions and 2 deletions
|
@ -351,7 +351,7 @@ IntCreateMenu(PHANDLE Handle, BOOL IsMenuBar)
|
|||
Menu->MenuItemList = NULL;
|
||||
|
||||
/* Insert menu item into process menu handle list */
|
||||
InsertTailList(&PsGetWin32Process()->MenuListHead, &Menu->ListEntry);
|
||||
InsertTailList(&PsGetCurrentProcessWin32Process()->MenuListHead, &Menu->ListEntry)
|
||||
|
||||
return Menu;
|
||||
}
|
||||
|
@ -455,7 +455,7 @@ IntCloneMenu(PMENU_OBJECT Source)
|
|||
Menu->MenuItemList = NULL;
|
||||
|
||||
/* Insert menu item into process menu handle list */
|
||||
InsertTailList(&PsGetWin32Process()->MenuListHead, &Menu->ListEntry);
|
||||
InsertTailList(&PsGetCurrentProcessWin32Process()->MenuListHead, &Menu->ListEntry);
|
||||
|
||||
IntCloneMenuItems(Menu, Source);
|
||||
|
||||
|
|
Loading…
Reference in a new issue