mirror of
https://github.com/reactos/wine.git
synced 2025-01-31 17:23:53 +00:00
shell32: Fix a pointer cast warning on 64-bit.
This commit is contained in:
parent
41533fa516
commit
e65c2d9a0d
@ -300,7 +300,7 @@ static void Control_WndProc_Create(HWND hWnd, const CREATESTRUCTW* cs)
|
||||
mii.dwTypeData = applet->info[i].szName;
|
||||
mii.cch = sizeof(applet->info[i].szName) / sizeof(applet->info[i].szName[0]);
|
||||
mii.wID = IDM_CPANEL_APPLET_BASE + menucount;
|
||||
mii.dwItemData = (DWORD) item;
|
||||
mii.dwItemData = (ULONG_PTR)item;
|
||||
|
||||
if (InsertMenuItemW(hSubMenu, menucount, TRUE, &mii)) {
|
||||
/* add the list view item */
|
||||
|
Loading…
x
Reference in New Issue
Block a user