Changeset 1533 for trunk/dll/seeall.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/seeall.c

    r1498 r1533  
    31803180          WinSendMsg(hwnd, WM_VSCROLL, MPFROM2SHORT(FID_VERTSCROLL, 0),
    31813181                     MPFROM2SHORT(0, SB_LINEUP));
    3182           pts.y = (Rectl.yTop - Rectl.yBottom) - 1;
     3182          pts.y = (SHORT) (Rectl.yTop - Rectl.yBottom) - 1;
    31833183          outofwindow = TRUE;
    31843184        }
Note: See TracChangeset for help on using the changeset viewer.