Changeset 7364 for trunk/src/user32/scroll.cpp
- Timestamp:
- Nov 16, 2001, 5:11:01 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/scroll.cpp
r7294 r7364 1 /* $Id: scroll.cpp,v 1.4 6 2001-11-07 15:36:10sandervl Exp $ */1 /* $Id: scroll.cpp,v 1.47 2001-11-16 16:11:01 sandervl Exp $ */ 2 2 /* 3 3 * Scrollbar control … … 1524 1524 info.nMax = MaxVal; 1525 1525 info.fMask = SIF_RANGE; 1526 SetScrollInfo( hwnd, nBar, &info, bRedraw ); 1526 //testestset 1527 static int nestlevel = 0; 1528 1529 //NOTE: This is an ugly workaround for an endless loop in CVP 1530 // Need to make sure there isn't a better fix. 1531 if(++nestlevel == 1) 1532 SetScrollInfo( hwnd, nBar, &info, bRedraw ); 1533 nestlevel--; 1534 //testestset 1527 1535 return TRUE; 1528 1536 }
Note:
See TracChangeset
for help on using the changeset viewer.