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
e8992418
Commit
e8992418
authored
Dec 08, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskmgr: Remove some superfluous casts.
parent
f3975c5a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
dbgchnl.c
programs/taskmgr/dbgchnl.c
+1
-1
graphctl.c
programs/taskmgr/graphctl.c
+1
-1
taskmgr.c
programs/taskmgr/taskmgr.c
+1
-1
No files found.
programs/taskmgr/dbgchnl.c
View file @
e8992418
...
...
@@ -111,7 +111,7 @@ static int list_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_
char
val
[
2
];
LVITEMA
lvitem
;
int
index
;
HWND
hChannelLV
=
(
HWND
)
user
;
HWND
hChannelLV
=
user
;
lvitem
.
mask
=
LVIF_TEXT
;
lvitem
.
pszText
=
channel
->
name
;
...
...
programs/taskmgr/graphctl.c
View file @
e8992418
...
...
@@ -377,7 +377,7 @@ void GraphCtrl_Paint(TGraphCtrl* this, HWND hWnd, HDC dc)
/* to avoid flicker, establish a memory dc, draw to it */
/* and then BitBlt it to the client */
memDC
=
CreateCompatibleDC
(
dc
);
memBitmap
=
(
HBITMAP
)
CreateCompatibleBitmap
(
dc
,
this
->
m_nClientWidth
,
this
->
m_nClientHeight
);
memBitmap
=
CreateCompatibleBitmap
(
dc
,
this
->
m_nClientWidth
,
this
->
m_nClientHeight
);
oldBitmap
=
SelectObject
(
memDC
,
memBitmap
);
if
(
memDC
!=
NULL
)
...
...
programs/taskmgr/taskmgr.c
View file @
e8992418
...
...
@@ -753,7 +753,7 @@ LPWSTR GetLastErrorText(LPWSTR lpwszBuf, DWORD dwSize)
sprintfW
(
lpwszBuf
,
wszFormat
,
lpwszTemp
,
GetLastError
());
}
if
(
lpwszTemp
)
{
LocalFree
(
(
HLOCAL
)
lpwszTemp
);
LocalFree
(
lpwszTemp
);
}
return
lpwszBuf
;
}
...
...
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