taskmgr: Remove variable pnmv which is not really used from ProcessPageOnNotify.
authorGerald Pfeifer <gerald@pfeifer.com>
Tue, 4 May 2010 22:24:30 +0000 (00:24 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Wed, 5 May 2010 08:52:57 +0000 (10:52 +0200)
programs/taskmgr/procpage.c

index 7f911140b03730b459a6d5ab20a4938e3adf6198..beccfbf87076bcdfebddcf531a9aa126c54540a7 100644 (file)
@@ -151,7 +151,6 @@ static void ProcessPageShowContextMenu(DWORD dwProcessId)
 static void ProcessPageOnNotify(LPARAM lParam)
 {
     LPNMHDR            pnmh;
-    LPNMLISTVIEW       pnmv;
     NMLVDISPINFOW*     pnmdi;
     LVITEM             lvitem;
     ULONG              Index;
@@ -163,7 +162,6 @@ static void ProcessPageOnNotify(LPARAM lParam)
     static const WCHAR wszUnitK[] = {' ','K',0};
 
     pnmh = (LPNMHDR) lParam;
-    pnmv = (LPNMLISTVIEW) lParam;
     pnmdi = (NMLVDISPINFOW*) lParam;
 
     if (pnmh->hwndFrom == hProcessPageListCtrl)