mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 06:02:56 +00:00
[0.4.7][TASKMGR] Backport 3 commits de-DE, id-ID and 'Remove Debug Channels' CORE-18057
by picking the following 3 commits: 0.4.9-dev-98-gf80d227ec2
[TASKMGR] improve de-DE.rc 0.4.15-dev-413-ged7196d964
[TASKMGR] Remove 'Debug Channels' feature, which is Wine-specific 0.4.15-dev-2488-gfd4d8f550c
[TASKMGR] id-ID.rc, just the single line in this module
This commit is contained in:
parent
7f002b7ad7
commit
4e893b4b68
34 changed files with 10 additions and 432 deletions
|
@ -364,9 +364,6 @@ void ProcessPageShowContextMenu(DWORD dwProcessId)
|
|||
if (si.dwNumberOfProcessors < 2)
|
||||
RemoveMenu(hSubMenu, ID_PROCESS_PAGE_SETAFFINITY, MF_BYCOMMAND);
|
||||
|
||||
if (!DebugChannelsAreSupported())
|
||||
RemoveMenu(hSubMenu, ID_PROCESS_PAGE_DEBUGCHANNELS, MF_BYCOMMAND);
|
||||
|
||||
switch (dwProcessPriorityClass) {
|
||||
case REALTIME_PRIORITY_CLASS:
|
||||
CheckMenuRadioItem(hPriorityMenu, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, ID_PROCESS_PAGE_SETPRIORITY_LOW, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, MF_BYCOMMAND);
|
||||
|
@ -481,7 +478,7 @@ void UpdateProcesses()
|
|||
SendMessage(hProcessPageListCtrl, WM_SETREDRAW, TRUE, 0);
|
||||
|
||||
/* Select first item if any */
|
||||
if ((ListView_GetNextItem(hProcessPageListCtrl, -1, LVNI_FOCUSED | LVNI_SELECTED) == -1) &&
|
||||
if ((ListView_GetNextItem(hProcessPageListCtrl, -1, LVNI_FOCUSED | LVNI_SELECTED) == -1) &&
|
||||
(ListView_GetItemCount(hProcessPageListCtrl) > 0) && !bProcessPageSelectionMade)
|
||||
{
|
||||
ListView_SetItemState(hProcessPageListCtrl, 0, LVIS_FOCUSED | LVIS_SELECTED, LVIS_FOCUSED | LVIS_SELECTED);
|
||||
|
@ -495,7 +492,7 @@ void UpdateProcesses()
|
|||
*/
|
||||
}
|
||||
|
||||
BOOL ProcessRunning(ULONG ProcessId)
|
||||
BOOL ProcessRunning(ULONG ProcessId)
|
||||
{
|
||||
HANDLE hProcess;
|
||||
DWORD exitCode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue