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