Changeset 2257 for trunk/src/user32/win32wmdiclient.cpp
- Timestamp:
- Dec 29, 1999, 11:54:04 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wmdiclient.cpp
r2250 r2257 1 /* $Id: win32wmdiclient.cpp,v 1. 19 1999-12-29 14:37:18 sandervlExp $ */1 /* $Id: win32wmdiclient.cpp,v 1.20 1999-12-29 22:54:03 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 MDI Client Window Class for OS/2 … … 1034 1034 GetScrollRange(hWnd,SB_HORZ,&minPos,&maxPos); 1035 1035 curPos = GetScrollPos(hWnd,SB_HORZ); 1036 length = win32wnd->get WindowWidth()/2;1036 length = win32wnd->getClientWidth()/2; 1037 1037 shift = GetSystemMetrics(SM_CYHSCROLL); 1038 1038 } else if (uMsg == WM_VSCROLL) … … 1040 1040 GetScrollRange(hWnd,SB_VERT,&minPos,&maxPos); 1041 1041 curPos = GetScrollPos(hWnd,SB_VERT); 1042 length = win32wnd->get WindowHeight()/2;1042 length = win32wnd->getClientHeight()/2; 1043 1043 shift = GetSystemMetrics(SM_CXVSCROLL); 1044 1044 } else return;
Note:
See TracChangeset
for help on using the changeset viewer.