Changeset 1960 for trunk/src/user32/scroll.cpp
- Timestamp:
- Dec 3, 1999, 6:30:17 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/scroll.cpp
r1922 r1960 1 /* $Id: scroll.cpp,v 1.2 6 1999-12-01 18:23:28cbratschi Exp $ */1 /* $Id: scroll.cpp,v 1.27 1999-12-03 17:30:17 cbratschi Exp $ */ 2 2 /* 3 3 * Scrollbar control … … 85 85 86 86 if (!win32wnd) return 0; 87 //CB: I removed WS_* check due to problems, but it should work 87 88 if (nBar == SB_HORZ) 88 return (win32wnd->getStyle() & WS_HSCROLL) ? Win32BaseWindow::OS2ToWin32Handle(win32wnd->getHorzScrollHandle()):0;89 return /*(win32wnd->getStyle() & WS_HSCROLL) ?*/ Win32BaseWindow::OS2ToWin32Handle(win32wnd->getHorzScrollHandle())/*:0*/; 89 90 else 90 return (win32wnd->getStyle() & WS_VSCROLL) ? Win32BaseWindow::OS2ToWin32Handle(win32wnd->getVertScrollHandle()):0;91 return /*(win32wnd->getStyle() & WS_VSCROLL) ?*/ Win32BaseWindow::OS2ToWin32Handle(win32wnd->getVertScrollHandle())/*:0*/; 91 92 } 92 93
Note:
See TracChangeset
for help on using the changeset viewer.