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