Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2aa11ff6
Commit
2aa11ff6
authored
May 01, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
May 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskmgr: Shed one parameter and one local variable from ProcessPageOnNotify.
parent
370cbe5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
procpage.c
programs/taskmgr/procpage.c
+2
-5
No files found.
programs/taskmgr/procpage.c
View file @
2aa11ff6
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment