Changeset 184 for trunk/src/helpers/cctl_progbar.c
- Timestamp:
- Jul 5, 2002, 9:13:36 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/cctl_progbar.c
r167 r184 401 401 BOOL ctlProgressBarFromStatic(HWND hwndChart, ULONG ulAttr) 402 402 { 403 PFNWP OldStaticProc = WinSubclassWindow(hwndChart, ctl_fnwpProgressBar);404 if (OldStaticProc )403 PFNWP OldStaticProc; 404 if (OldStaticProc = WinSubclassWindow(hwndChart, ctl_fnwpProgressBar)) 405 405 { 406 406 PPROGRESSBARDATA pData = (PPROGRESSBARDATA)malloc(sizeof(PROGRESSBARDATA)); … … 414 414 return (TRUE); 415 415 } 416 else return (FALSE); 416 417 return (FALSE); 417 418 } 418 419
Note:
See TracChangeset
for help on using the changeset viewer.