| 1851 | } |
| 1852 | |
| 1853 | BOOL CPanel::RemoveChild(CPanel * pChild) |
| 1854 | { |
| 1855 | POSITION pos = Children.Find(pChild); |
| 1856 | if (pos == NULL) |
| 1857 | { |
| 1858 | return FALSE; |
| 1859 | } |
| 1860 | Children.RemoveAt(pos); |
| 1861 | return TRUE; |
| 1862 | |
| 1863 | } |
| 1864 | |
| 1865 | BOOL CPanel::SetMinSize(CSize & size) |
| 1866 | { |
no test coverage detected