comctl32/edit: Get rid of useless casts.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b95bc84273
commit
f3cfb66cf7
@ -5017,7 +5017,7 @@ static LRESULT CALLBACK EDIT_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPAR
|
|||||||
case WM_MOUSEWHEEL:
|
case WM_MOUSEWHEEL:
|
||||||
{
|
{
|
||||||
int wheelDelta;
|
int wheelDelta;
|
||||||
UINT pulScrollLines = 3;
|
INT pulScrollLines = 3;
|
||||||
SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
|
SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
|
||||||
|
|
||||||
if (wParam & (MK_SHIFT | MK_CONTROL))
|
if (wParam & (MK_SHIFT | MK_CONTROL))
|
||||||
@ -5037,9 +5037,9 @@ static LRESULT CALLBACK EDIT_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPAR
|
|||||||
if (es->wheelDeltaRemainder && pulScrollLines)
|
if (es->wheelDeltaRemainder && pulScrollLines)
|
||||||
{
|
{
|
||||||
int cLineScroll;
|
int cLineScroll;
|
||||||
pulScrollLines = (int) min((UINT) es->line_count, pulScrollLines);
|
pulScrollLines = min(es->line_count, pulScrollLines);
|
||||||
cLineScroll = pulScrollLines * (float)es->wheelDeltaRemainder / WHEEL_DELTA;
|
cLineScroll = pulScrollLines * es->wheelDeltaRemainder / WHEEL_DELTA;
|
||||||
es->wheelDeltaRemainder -= WHEEL_DELTA * cLineScroll / (int)pulScrollLines;
|
es->wheelDeltaRemainder -= WHEEL_DELTA * cLineScroll / pulScrollLines;
|
||||||
result = EDIT_EM_LineScroll(es, 0, -cLineScroll);
|
result = EDIT_EM_LineScroll(es, 0, -cLineScroll);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user