| 807 | } |
| 808 | |
| 809 | bool CContainerUI::SetSubControlText( LPCTSTR pstrSubControlName,LPCTSTR pstrText ) |
| 810 | { |
| 811 | CControlUI* pSubControl=NULL; |
| 812 | pSubControl=this->FindSubControl(pstrSubControlName); |
| 813 | if (pSubControl!=NULL) |
| 814 | { |
| 815 | pSubControl->SetText(pstrText); |
| 816 | return TRUE; |
| 817 | } |
| 818 | else |
| 819 | return FALSE; |
| 820 | } |
| 821 | |
| 822 | bool CContainerUI::SetSubControlFixedHeight( LPCTSTR pstrSubControlName,int cy ) |
| 823 | { |
nothing calls this directly
no test coverage detected