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
f7e292a5
Commit
f7e292a5
authored
Feb 28, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Mar 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Remove unused wParam parameters from PRINTDLG_WMInitDialog and PRINTDLG_WMInitDialogW.
parent
9939fd60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
printdlg.c
dlls/comdlg32/printdlg.c
+4
-4
No files found.
dlls/comdlg32/printdlg.c
View file @
f7e292a5
...
...
@@ -1283,7 +1283,7 @@ static LRESULT check_printer_setup(HWND hDlg)
/***********************************************************************
* PRINTDLG_WMInitDialog [internal]
*/
static
LRESULT
PRINTDLG_WMInitDialog
(
HWND
hDlg
,
WPARAM
wParam
,
static
LRESULT
PRINTDLG_WMInitDialog
(
HWND
hDlg
,
PRINT_PTRA
*
PrintStructures
)
{
LPPRINTDLGA
lppd
=
PrintStructures
->
lpPrintDlg
;
...
...
@@ -1391,7 +1391,7 @@ static LRESULT PRINTDLG_WMInitDialog(HWND hDlg, WPARAM wParam,
return
TRUE
;
}
static
LRESULT
PRINTDLG_WMInitDialogW
(
HWND
hDlg
,
WPARAM
wParam
,
static
LRESULT
PRINTDLG_WMInitDialogW
(
HWND
hDlg
,
PRINT_PTRW
*
PrintStructures
)
{
LPPRINTDLGW
lppd
=
PrintStructures
->
lpPrintDlg
;
...
...
@@ -1829,7 +1829,7 @@ static INT_PTR CALLBACK PrintDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam,
EndDialog
(
hDlg
,
FALSE
);
return
FALSE
;
}
res
=
PRINTDLG_WMInitDialog
(
hDlg
,
wParam
,
PrintStructures
);
res
=
PRINTDLG_WMInitDialog
(
hDlg
,
PrintStructures
);
if
(
PrintStructures
->
lpPrintDlg
->
Flags
&
PD_ENABLEPRINTHOOK
)
res
=
PrintStructures
->
lpPrintDlg
->
lpfnPrintHook
(
...
...
@@ -1878,7 +1878,7 @@ static INT_PTR CALLBACK PrintDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam,
EndDialog
(
hDlg
,
FALSE
);
return
FALSE
;
}
res
=
PRINTDLG_WMInitDialogW
(
hDlg
,
wParam
,
PrintStructures
);
res
=
PRINTDLG_WMInitDialogW
(
hDlg
,
PrintStructures
);
if
(
PrintStructures
->
lpPrintDlg
->
Flags
&
PD_ENABLEPRINTHOOK
)
res
=
PrintStructures
->
lpPrintDlg
->
lpfnPrintHook
(
hDlg
,
uMsg
,
wParam
,
(
LPARAM
)
PrintStructures
->
lpPrintDlg
);
...
...
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