Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1e5328c7
Commit
1e5328c7
authored
Sep 20, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Remove superfluous function pointer casts.
parent
bfd9cd1c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
dialog.c
dlls/user32/dialog.c
+1
-2
msg.c
dlls/user32/tests/msg.c
+1
-2
No files found.
dlls/user32/dialog.c
View file @
1e5328c7
...
...
@@ -1513,8 +1513,7 @@ BOOL WINAPI CheckRadioButton( HWND hwndDlg, int firstID,
radioGroup
.
lastID
=
lastID
;
radioGroup
.
checkID
=
checkID
;
return
EnumChildWindows
(
hwndDlg
,
(
WNDENUMPROC
)
CheckRB
,
(
LPARAM
)
&
radioGroup
);
return
EnumChildWindows
(
hwndDlg
,
CheckRB
,
(
LPARAM
)
&
radioGroup
);
}
...
...
dlls/user32/tests/msg.c
View file @
1e5328c7
...
...
@@ -11268,8 +11268,7 @@ static void test_EndDialog(void)
ok
(
GetClassInfo
(
0
,
"#32770"
,
&
cls
),
"GetClassInfo failed
\n
"
);
cls
.
lpszClassName
=
"MyDialogClass"
;
cls
.
hInstance
=
GetModuleHandle
(
0
);
/* need a cast since a dlgproc is used as a wndproc */
cls
.
lpfnWndProc
=
(
WNDPROC
)
test_dlg_proc
;
cls
.
lpfnWndProc
=
test_dlg_proc
;
if
(
!
RegisterClass
(
&
cls
))
assert
(
0
);
flush_sequence
();
...
...
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