comdlg32: Remove unused parameters from CFn_WMMeasureItem and CFn_WMDrawItem.
This commit is contained in:
parent
27b7f25968
commit
3ecea9f826
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue