taskmgr: Shed one parameter and one local variable from ProcessPageOnNotify.

This commit is contained in:
Gerald Pfeifer 2010-05-01 16:48:48 +02:00 committed by Alexandre Julliard
parent 370cbe5e5b
commit 2aa11ff62e
1 changed files with 2 additions and 5 deletions

View File

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