Ignore:
Timestamp:
Jun 16, 1999, 10:25:45 PM (26 years ago)
Author:
cbratschi
Message:

comctl32 wine conversion bugs fixed
trackbar: TRACKBAR_Draw prototype

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/progress.c

    r109 r110  
    1 /* $Id: progress.c,v 1.4 1999-06-16 15:29:26 cbratschi Exp $ */
     1/* $Id: progress.c,v 1.5 1999-06-16 20:25:43 cbratschi Exp $ */
    22/*
    33 * Progress control
     
    88 * Copyright 1999 Christoph Bratschi
    99 *
     10 * Status: complete
    1011 */
    1112
     
    374375      temp = infoPtr->CurVal;
    375376      if(temp != wParam){
    376         infoPtr->CurVal = (UINT16)wParam;
     377        infoPtr->CurVal = (UINT16)wParam; //CB: 0..65535 allowed
    377378        PROGRESS_CoercePos(hwnd);
    378379        PROGRESS_Update (hwnd,temp);
     
    398399        UNKNOWN_PARAM(PBM_SETSTEP, wParam, lParam);
    399400      temp = infoPtr->Step;
    400       infoPtr->Step = (INT)wParam;
     401      infoPtr->Step = (INT)wParam; //CB: negative steps allowed
    401402      return temp;
    402403
Note: See TracChangeset for help on using the changeset viewer.