From d07448dd3a5b841af3ead589c6916c2de7435385 Mon Sep 17 00:00:00 2001 From: Troy Rollo Date: Tue, 14 Feb 2006 11:37:57 +0100 Subject: [PATCH] user: Fix argument type for EnableScrollBar. --- dlls/user/scroll.c | 2 +- include/winuser.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user/scroll.c b/dlls/user/scroll.c index 8a6467246fb..79f283f4926 100644 --- a/dlls/user/scroll.c +++ b/dlls/user/scroll.c @@ -2014,7 +2014,7 @@ BOOL WINAPI ShowScrollBar(HWND hwnd, INT nBar, BOOL fShow) * * Enables or disables the scroll bars. */ -BOOL WINAPI EnableScrollBar( HWND hwnd, INT nBar, UINT flags ) +BOOL WINAPI EnableScrollBar( HWND hwnd, UINT nBar, UINT flags ) { BOOL bFineWithMe; SCROLLBAR_INFO *infoPtr; diff --git a/include/winuser.h b/include/winuser.h index daac463602e..de09afeaa9c 100644 --- a/include/winuser.h +++ b/include/winuser.h @@ -4278,7 +4278,7 @@ INT WINAPI DrawTextExW(HDC,LPWSTR,INT,LPRECT,UINT,LPDRAWTEXTPARAMS); #define DrawTextEx WINELIB_NAME_AW(DrawTextEx) BOOL WINAPI EmptyClipboard(void); BOOL WINAPI EnableMenuItem(HMENU,UINT,UINT); -BOOL WINAPI EnableScrollBar(HWND,INT,UINT); +BOOL WINAPI EnableScrollBar(HWND,UINT,UINT); BOOL WINAPI EnableWindow(HWND,BOOL); BOOL WINAPI EndDeferWindowPos(HDWP); BOOL WINAPI EndDialog(HWND,INT_PTR);