mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:03:07 +00:00
[CMAKE]
- Sync with trunk head (r50270) - This also reverts r49298. svn path=/branches/cmake-bringup/; revision=50271
This commit is contained in:
commit
6c0c23cb53
482 changed files with 40346 additions and 24711 deletions
|
@ -201,6 +201,11 @@ ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
|||
case WM_NOTIFY:
|
||||
ProcessPageOnNotify(wParam, lParam);
|
||||
break;
|
||||
|
||||
case WM_KEYDOWN:
|
||||
if (wParam == VK_DELETE)
|
||||
ProcessPage_OnEndProcess();
|
||||
break;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -251,6 +256,12 @@ void ProcessPageOnNotify(WPARAM wParam, LPARAM lParam)
|
|||
ProcessPageShowContextMenu(GetSelectedProcessId());
|
||||
break;
|
||||
|
||||
case LVN_KEYDOWN:
|
||||
|
||||
if (((LPNMLVKEYDOWN)lParam)->wVKey == VK_DELETE)
|
||||
ProcessPage_OnEndProcess();
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
else if (pnmh->hwndFrom == hProcessPageHeaderCtrl)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue