| 879 | } |
| 880 | |
| 881 | int CContainerUI::GetSubControlFixedWdith( LPCTSTR pstrSubControlName ) |
| 882 | { |
| 883 | CControlUI* pSubControl=NULL; |
| 884 | pSubControl=this->FindSubControl(pstrSubControlName); |
| 885 | if (pSubControl==NULL) |
| 886 | return -1; |
| 887 | else |
| 888 | return pSubControl->GetFixedWidth(); |
| 889 | } |
| 890 | |
| 891 | const CDuiString CContainerUI::GetSubControlUserData( LPCTSTR pstrSubControlName ) |
| 892 | { |
nothing calls this directly
no test coverage detected