Removed int declarations
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1166 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
ba40bb2d26
commit
27d4e682a8
1 changed files with 1 additions and 4 deletions
|
@ -128,10 +128,7 @@ BOOL CALLBACK DialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
|
|||
if (hmnu) hmnu = GetSubMenu(hmnu,0);
|
||||
}
|
||||
if (hmnu) {
|
||||
int xPos,yPos;
|
||||
xPos = (int)(short)LOWORD(lParam);
|
||||
yPos = (int)(short)HIWORD(lParam);
|
||||
TrackPopupMenu(hmnu,NULL,xPos,yPos,0,g_hwnd,0);
|
||||
TrackPopupMenu(hmnu,NULL,(int)(short)LOWORD(lParam),(int)(short)HIWORD(lParam),0,g_hwnd,0);
|
||||
}
|
||||
}
|
||||
return TRUE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue