| 846 | } |
| 847 | |
| 848 | bool CContainerUI::SetSubControlUserData( LPCTSTR pstrSubControlName,LPCTSTR pstrText ) |
| 849 | { |
| 850 | CControlUI* pSubControl=NULL; |
| 851 | pSubControl=this->FindSubControl(pstrSubControlName); |
| 852 | if (pSubControl!=NULL) |
| 853 | { |
| 854 | pSubControl->SetUserData(pstrText); |
| 855 | return TRUE; |
| 856 | } |
| 857 | else |
| 858 | return FALSE; |
| 859 | } |
| 860 | |
| 861 | DuiLib::CDuiString CContainerUI::GetSubControlText( LPCTSTR pstrSubControlName ) |
| 862 | { |
nothing calls this directly
no test coverage detected