| 820 | } |
| 821 | |
| 822 | bool CContainerUI::SetSubControlFixedHeight( LPCTSTR pstrSubControlName,int cy ) |
| 823 | { |
| 824 | CControlUI* pSubControl=NULL; |
| 825 | pSubControl=this->FindSubControl(pstrSubControlName); |
| 826 | if (pSubControl!=NULL) |
| 827 | { |
| 828 | pSubControl->SetFixedHeight(cy); |
| 829 | return TRUE; |
| 830 | } |
| 831 | else |
| 832 | return FALSE; |
| 833 | } |
| 834 | |
| 835 | bool CContainerUI::SetSubControlFixedWdith( LPCTSTR pstrSubControlName,int cx ) |
| 836 | { |
nothing calls this directly
no test coverage detected