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
3ecea9f8
Commit
3ecea9f8
authored
Mar 06, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Mar 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Remove unused parameters from CFn_WMMeasureItem and CFn_WMDrawItem.
parent
27b7f259
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
fontdlg.c
dlls/comdlg32/fontdlg.c
+6
-6
No files found.
dlls/comdlg32/fontdlg.c
View file @
3ecea9f8
...
...
@@ -766,7 +766,7 @@ static LRESULT CFn_WMInitDialog(HWND hDlg, LPARAM lParam, LPCHOOSEFONTW lpcf)
/***********************************************************************
* CFn_WMMeasureItem [internal]
*/
static
LRESULT
CFn_WMMeasureItem
(
HWND
hDlg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CFn_WMMeasureItem
(
HWND
hDlg
,
LPARAM
lParam
)
{
HDC
hdc
;
HFONT
hfontprev
;
...
...
@@ -794,7 +794,7 @@ static LRESULT CFn_WMMeasureItem(HWND hDlg, WPARAM wParam, LPARAM lParam)
/***********************************************************************
* CFn_WMDrawItem [internal]
*/
static
LRESULT
CFn_WMDrawItem
(
HWND
hDlg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CFn_WMDrawItem
(
LPARAM
lParam
)
{
HBRUSH
hBrush
;
WCHAR
buffer
[
40
];
...
...
@@ -1190,9 +1190,9 @@ static INT_PTR CALLBACK FormatCharDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam,
switch
(
uMsg
)
{
case
WM_MEASUREITEM
:
return
CFn_WMMeasureItem
(
hDlg
,
wParam
,
lParam
);
return
CFn_WMMeasureItem
(
hDlg
,
lParam
);
case
WM_DRAWITEM
:
return
CFn_WMDrawItem
(
hDlg
,
wParam
,
lParam
);
return
CFn_WMDrawItem
(
lParam
);
case
WM_COMMAND
:
return
CFn_WMCommand
(
hDlg
,
wParam
,
lParam
,
lpcfw
);
case
WM_DESTROY
:
...
...
@@ -1239,9 +1239,9 @@ static INT_PTR CALLBACK FormatCharDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam,
switch
(
uMsg
)
{
case
WM_MEASUREITEM
:
return
CFn_WMMeasureItem
(
hDlg
,
wParam
,
lParam
);
return
CFn_WMMeasureItem
(
hDlg
,
lParam
);
case
WM_DRAWITEM
:
return
CFn_WMDrawItem
(
hDlg
,
wParam
,
lParam
);
return
CFn_WMDrawItem
(
lParam
);
case
WM_COMMAND
:
return
CFn_WMCommand
(
hDlg
,
wParam
,
lParam
,
lpcf
);
case
WM_DESTROY
:
...
...
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