| 833 | } |
| 834 | |
| 835 | bool CContainerUI::SetSubControlFixedWdith( LPCTSTR pstrSubControlName,int cx ) |
| 836 | { |
| 837 | CControlUI* pSubControl=NULL; |
| 838 | pSubControl=this->FindSubControl(pstrSubControlName); |
| 839 | if (pSubControl!=NULL) |
| 840 | { |
| 841 | pSubControl->SetFixedWidth(cx); |
| 842 | return TRUE; |
| 843 | } |
| 844 | else |
| 845 | return FALSE; |
| 846 | } |
| 847 | |
| 848 | bool CContainerUI::SetSubControlUserData( LPCTSTR pstrSubControlName,LPCTSTR pstrText ) |
| 849 | { |
nothing calls this directly
no test coverage detected