Changeset 2418 for trunk/src/user32/new/scroll.cpp
- Timestamp:
- Jan 12, 2000, 4:14:16 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/scroll.cpp
r2381 r2418 1 /* $Id: scroll.cpp,v 1. 8 2000-01-09 14:14:23 cbratschiExp $ */1 /* $Id: scroll.cpp,v 1.9 2000-01-12 15:14:16 sandervl Exp $ */ 2 2 /* 3 3 * Scrollbar control … … 1471 1471 { 1472 1472 Win32BaseWindow *win32wnd = Win32BaseWindow::GetWindowFromHandle(hwnd); 1473 BOOL fShowH = (nBar == SB_HORZ) ? 0:fShow,fShowV = (nBar == SB_VERT) ? 0:fShow; 1473 // BOOL fShowH = (nBar == SB_HORZ) ? 0:fShow,fShowV = (nBar == SB_VERT) ? 0:fShow; 1474 BOOL fShowH = (nBar == SB_HORZ) ? fShow : 0; 1475 BOOL fShowV = (nBar == SB_VERT) ? fShow : 0; 1474 1476 1475 1477 dprintf(("ShowScrollBar %04x %d %d\n", hwnd, nBar, fShow));
Note:
See TracChangeset
for help on using the changeset viewer.