| 869 | } |
| 870 | |
| 871 | int CContainerUI::GetSubControlFixedHeight( LPCTSTR pstrSubControlName ) |
| 872 | { |
| 873 | CControlUI* pSubControl=NULL; |
| 874 | pSubControl=this->FindSubControl(pstrSubControlName); |
| 875 | if (pSubControl==NULL) |
| 876 | return -1; |
| 877 | else |
| 878 | return pSubControl->GetFixedHeight(); |
| 879 | } |
| 880 | |
| 881 | int CContainerUI::GetSubControlFixedWdith( LPCTSTR pstrSubControlName ) |
| 882 | { |
nothing calls this directly
no test coverage detected