Changeset 750 for trunk/src/user32/new/win32wbase.cpp
- Timestamp:
- Aug 31, 1999, 12:36:24 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wbase.cpp
r745 r750 1 /* $Id: win32wbase.cpp,v 1. 2 1999-08-30 16:38:59 dengertExp $ */1 /* $Id: win32wbase.cpp,v 1.3 1999-08-31 10:36:22 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1419 1419 return FALSE; 1420 1420 } 1421 winres->setOS2Handle(OS2HwndMenu); 1421 1422 menuResource = winres; 1422 1423 return TRUE; … … 1717 1718 if(hwndParent != OSLIB_HWND_DESKTOP) 1718 1719 {//if the current process owns the window, just do a quick search 1719 child = (Win32BaseWindow *)parent-> GetFirstChild();1720 child = (Win32BaseWindow *)parent->getFirstChild(); 1720 1721 if(hwndChildAfter != 0) 1721 1722 { … … 1724 1725 if(child->getWindowHandle() == hwndChildAfter) 1725 1726 { 1726 child = (Win32BaseWindow *)child-> GetNextChild();1727 child = (Win32BaseWindow *)child->getNextChild(); 1727 1728 break; 1728 1729 } 1729 child = (Win32BaseWindow *)child-> GetNextChild();1730 child = (Win32BaseWindow *)child->getNextChild(); 1730 1731 } 1731 1732 } … … 1738 1739 return child->getWindowHandle(); 1739 1740 } 1740 child = (Win32BaseWindow *)child-> GetNextChild();1741 child = (Win32BaseWindow *)child->getNextChild(); 1741 1742 } 1742 1743 } … … 1947 1948 case GWL_EXSTYLE: 1948 1949 oldval = dwExStyle; 1949 dwExStyle = value;1950 setExStyle(value); 1950 1951 return oldval; 1951 1952 case GWL_STYLE: 1952 1953 oldval = dwStyle; 1953 dwStyle = value;1954 setStyle(value); 1954 1955 return oldval; 1955 1956 case GWL_WNDPROC:
Note:
See TracChangeset
for help on using the changeset viewer.