mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
winecfg: Fix a pointer cast warning.
This commit is contained in:
parent
70103aadc8
commit
92edc06e16
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ AboutDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
SetTextColor((HDC)wParam, 0x0000007F);
|
||||
case IDC_ABT_PANEL_TEXT:
|
||||
case IDC_ABT_LICENSE_TEXT:
|
||||
return (BOOL)CreateSolidBrush(GetSysColor(COLOR_WINDOW));
|
||||
return (INT_PTR)CreateSolidBrush(GetSysColor(COLOR_WINDOW));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue