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
489d6134
Commit
489d6134
authored
Mar 17, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskmgr: Fix some gcc 4.1 warnings.
parent
2f5293fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
procpage.c
programs/taskmgr/procpage.c
+2
-2
No files found.
programs/taskmgr/procpage.c
View file @
489d6134
...
...
@@ -85,7 +85,7 @@ ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
*/
SendMessage
(
hProcessPageListCtrl
,
WM_SETFONT
,
SendMessage
(
hProcessPage
,
WM_GETFONT
,
0
,
0
),
TRUE
);
SetWindowText
(
hProcessPageListCtrl
,
_T
(
"Processes"
));
ListView_SetExtendedListViewStyle
(
hProcessPageListCtrl
,
ListView_GetExtendedListViewStyle
(
hProcessPageListCtrl
)
|
LVS_EX_FULLROWSELECT
|
LVS_EX_HEADERDRAGDROP
);
SendMessage
(
hProcessPageListCtrl
,
LVM_SETEXTENDEDLISTVIEWSTYLE
,
0
,
ListView_GetExtendedListViewStyle
(
hProcessPageListCtrl
)
|
LVS_EX_FULLROWSELECT
|
LVS_EX_HEADERDRAGDROP
);
AddColumns
();
...
...
@@ -348,7 +348,7 @@ void ProcessPageOnNotify(WPARAM wParam, LPARAM lParam)
lvitem
.
stateMask
=
LVIS_SELECTED
;
lvitem
.
iItem
=
Index
;
ListView_GetItem
(
hProcessPageListCtrl
,
&
lvitem
);
SendMessage
(
hProcessPageListCtrl
,
LVM_GETITEM
,
0
,
(
LPARAM
)
&
lvitem
);
if
(
lvitem
.
state
&
LVIS_SELECTED
)
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