Changeset 3663 for trunk/src/user32/win32wndchild.cpp
- Timestamp:
- Jun 7, 2000, 11:45:52 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wndchild.cpp
r2803 r3663 1 /* $Id: win32wndchild.cpp,v 1. 5 2000-02-16 14:28:25sandervl Exp $ */1 /* $Id: win32wndchild.cpp,v 1.6 2000-06-07 21:45:52 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Child/Parent window class for OS/2 … … 30 30 { 31 31 if(parent) { 32 parent-> RemoveChild(this);32 parent->removeChild(this); 33 33 } 34 34 //SvL: PM sends WM_DESTROY for all the children … … 43 43 //FIFO insertion 44 44 //****************************************************************************** 45 BOOL ChildWindow:: AddChild(ChildWindow *child)45 BOOL ChildWindow::addChild(ChildWindow *child) 46 46 { 47 47 ChildWindow *curchild; … … 67 67 //Remove child from linked list. Doesn't delete it! 68 68 //****************************************************************************** 69 BOOL ChildWindow:: RemoveChild(ChildWindow *child)69 BOOL ChildWindow::removeChild(ChildWindow *child) 70 70 { 71 71 ChildWindow *curchild = children; … … 99 99 //****************************************************************************** 100 100 //****************************************************************************** 101 BOOL ChildWindow:: DestroyChildren()101 BOOL ChildWindow::destroyChildren() 102 102 { 103 103 while(children) {
Note:
See TracChangeset
for help on using the changeset viewer.