Changeset 1533 for trunk/dll/newview.c


Ignore:
Timestamp:
May 30, 2010, 7:34:46 PM (15 years ago)
Author:
Gregg Young
Message:

Fixed possible loss of precision compiler warnings by casting the variables in question.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/newview.c

    r1498 r1533  
    22932293          WinSendMsg(hwnd, WM_VSCROLL, MPFROM2SHORT(FID_VERTSCROLL, 0),
    22942294                     MPFROM2SHORT(0, SB_LINEUP));
    2295           pts.y = (Rectl.yTop - Rectl.yBottom) - 1;
     2295          pts.y = (SHORT) (Rectl.yTop - Rectl.yBottom) - 1;
    22962296          outofwindow = TRUE;
    22972297        }
Note: See TracChangeset for help on using the changeset viewer.