mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[USER32] SetScrollPos should not bypass UserApiHook
CORE-18048
This commit is contained in:
parent
015fd3a72f
commit
977c129f33
1 changed files with 1 additions and 1 deletions
|
@ -1723,7 +1723,7 @@ SetScrollPos(HWND hWnd, INT nBar, INT nPos, BOOL bRedraw)
|
||||||
ScrollInfo.fMask = SIF_POS|SIF_PREVIOUSPOS;
|
ScrollInfo.fMask = SIF_POS|SIF_PREVIOUSPOS;
|
||||||
ScrollInfo.nPos = nPos;
|
ScrollInfo.nPos = nPos;
|
||||||
|
|
||||||
return RealSetScrollInfo(hWnd, nBar, &ScrollInfo, bRedraw);
|
return SetScrollInfo(hWnd, nBar, &ScrollInfo, bRedraw);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue