Ignore:
Timestamp:
Jul 5, 2002, 9:13:36 AM (23 years ago)
Author:
umoeller
Message:

Second round of fixes for 0.9.19.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/cctl_progbar.c

    r167 r184  
    401401BOOL ctlProgressBarFromStatic(HWND hwndChart, ULONG ulAttr)
    402402{
    403     PFNWP OldStaticProc = WinSubclassWindow(hwndChart, ctl_fnwpProgressBar);
    404     if (OldStaticProc)
     403    PFNWP OldStaticProc;
     404    if (OldStaticProc = WinSubclassWindow(hwndChart, ctl_fnwpProgressBar))
    405405    {
    406406        PPROGRESSBARDATA pData = (PPROGRESSBARDATA)malloc(sizeof(PROGRESSBARDATA));
     
    414414        return (TRUE);
    415415    }
    416     else return (FALSE);
     416
     417    return (FALSE);
    417418}
    418419
Note: See TracChangeset for help on using the changeset viewer.