| 452 | |
| 453 | |
| 454 | BOOL CWndResizer::SetAnchor(LPCTSTR panelName, UINT uAnchor) |
| 455 | { |
| 456 | // container must already exist |
| 457 | CPanel * pPanel = NULL; |
| 458 | if ( (pPanel = FindPanelByName(&root, panelName)) == NULL) |
| 459 | { |
| 460 | return FALSE; |
| 461 | } |
| 462 | |
| 463 | return pPanel->SetAnchor(uAnchor); |
| 464 | } |
| 465 | |
| 466 | BOOL CWndResizer::SetAnchor(UINT uID, UINT uAnchor) |
| 467 | { |
no outgoing calls
no test coverage detected