Commit 92edc06e authored by Alexandre Julliard's avatar Alexandre Julliard

winecfg: Fix a pointer cast warning.

parent 70103aad
...@@ -170,7 +170,7 @@ AboutDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) ...@@ -170,7 +170,7 @@ AboutDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
SetTextColor((HDC)wParam, 0x0000007F); SetTextColor((HDC)wParam, 0x0000007F);
case IDC_ABT_PANEL_TEXT: case IDC_ABT_PANEL_TEXT:
case IDC_ABT_LICENSE_TEXT: case IDC_ABT_LICENSE_TEXT:
return (BOOL)CreateSolidBrush(GetSysColor(COLOR_WINDOW)); return (INT_PTR)CreateSolidBrush(GetSysColor(COLOR_WINDOW));
} }
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment