commit | f3d1893f801e7bf3bf0f31ee893258135f29fa8a | [log] [tgz] |
---|---|---|
author | Michael Stefaniuc <mstefani@redhat.de> | Wed Oct 23 20:19:22 2002 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Oct 23 20:19:22 2002 +0000 |
tree | a1b8d7a6cb43187d94e1237d2d82c7c6821e220d | |
parent | fb1a572b646c22b53ddb7bc12590c7dffd542815 [diff] [blame] |
Add needed casts for a "no warnings" compile of comctl32.
diff --git a/dlls/comctl32/progress.c b/dlls/comctl32/progress.c index b18d9c6..b3961ff 100644 --- a/dlls/comctl32/progress.c +++ b/dlls/comctl32/progress.c
@@ -314,7 +314,7 @@ return (LRESULT)infoPtr->Font; case WM_SETFONT: - return PROGRESS_SetFont (infoPtr, (HFONT)wParam, (BOOL)lParam); + return (LRESULT)PROGRESS_SetFont(infoPtr, (HFONT)wParam, (BOOL)lParam); case WM_PAINT: return PROGRESS_Paint (infoPtr, (HDC)wParam);