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
5ca020b9
Commit
5ca020b9
authored
Jul 05, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Jul 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Remove dead initializations (clang).
parent
e70de44e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
edit.c
dlls/user32/edit.c
+2
-2
menu.c
dlls/user32/tests/menu.c
+1
-1
No files found.
dlls/user32/edit.c
View file @
5ca020b9
...
...
@@ -2063,8 +2063,8 @@ static INT EDIT_PaintText(EDITSTATE *es, HDC dc, INT x, INT y, INT line, INT col
*/
static
void
EDIT_PaintLine
(
EDITSTATE
*
es
,
HDC
dc
,
INT
line
,
BOOL
rev
)
{
INT
s
=
es
->
selection_start
;
INT
e
=
es
->
selection_end
;
INT
s
;
INT
e
;
INT
li
;
INT
ll
;
INT
x
;
...
...
dlls/user32/tests/menu.c
View file @
5ca020b9
...
...
@@ -1082,7 +1082,7 @@ static void test_menu_iteminfo( void )
void
*
txt
,
*
init
,
*
empty
,
*
string
;
HBITMAP
hbm
=
CreateBitmap
(
1
,
1
,
1
,
1
,
NULL
);
char
stringA
[
0x80
];
HMENU
hmenu
,
submenu
=
CreateMenu
()
;
HMENU
hmenu
,
submenu
;
HBITMAP
dummy_hbm
=
(
HBITMAP
)(
ULONG_PTR
)
0xdeadbeef
;
do
{
...
...
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