mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
taskmgr: Shed one parameter and one local variable from ProcessPageOnNotify.
This commit is contained in:
parent
370cbe5e5b
commit
2aa11ff62e
@ -148,9 +148,8 @@ static void ProcessPageShowContextMenu(DWORD dwProcessId)
|
||||
DestroyMenu(hMenu);
|
||||
}
|
||||
|
||||
static void ProcessPageOnNotify(WPARAM wParam, LPARAM lParam)
|
||||
static void ProcessPageOnNotify(LPARAM lParam)
|
||||
{
|
||||
int idctrl;
|
||||
LPNMHDR pnmh;
|
||||
LPNMLISTVIEW pnmv;
|
||||
NMLVDISPINFOW* pnmdi;
|
||||
@ -163,7 +162,6 @@ static void ProcessPageOnNotify(WPARAM wParam, LPARAM lParam)
|
||||
static const WCHAR wszFmt02D[] = {'%','0','2','d',0};
|
||||
static const WCHAR wszUnitK[] = {' ','K',0};
|
||||
|
||||
idctrl = (int) wParam;
|
||||
pnmh = (LPNMHDR) lParam;
|
||||
pnmv = (LPNMLISTVIEW) lParam;
|
||||
pnmdi = (NMLVDISPINFOW*) lParam;
|
||||
@ -542,8 +540,7 @@ ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
break;
|
||||
|
||||
case WM_NOTIFY:
|
||||
|
||||
ProcessPageOnNotify(wParam, lParam);
|
||||
ProcessPageOnNotify(lParam);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user