mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 13:33:42 +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;
|
Menu->MenuItemList = NULL;
|
||||||
|
|
||||||
/* Insert menu item into process menu handle list */
|
/* Insert menu item into process menu handle list */
|
||||||
InsertTailList(&PsGetWin32Process()->MenuListHead, &Menu->ListEntry);
|
InsertTailList(&PsGetCurrentProcessWin32Process()->MenuListHead, &Menu->ListEntry)
|
||||||
|
|
||||||
return Menu;
|
return Menu;
|
||||||
}
|
}
|
||||||
|
@ -455,7 +455,7 @@ IntCloneMenu(PMENU_OBJECT Source)
|
||||||
Menu->MenuItemList = NULL;
|
Menu->MenuItemList = NULL;
|
||||||
|
|
||||||
/* Insert menu item into process menu handle list */
|
/* Insert menu item into process menu handle list */
|
||||||
InsertTailList(&PsGetWin32Process()->MenuListHead, &Menu->ListEntry);
|
InsertTailList(&PsGetCurrentProcessWin32Process()->MenuListHead, &Menu->ListEntry);
|
||||||
|
|
||||||
IntCloneMenuItems(Menu, Source);
|
IntCloneMenuItems(Menu, Source);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue