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:
rainwater 2002-09-24 13:41:01 +00:00
parent ba40bb2d26
commit 27d4e682a8

View file

@ -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;