| 160 | } |
| 161 | |
| 162 | void CHorizontalLayoutUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) |
| 163 | { |
| 164 | if( _tcscmp(pstrName, _T("sepwidth")) == 0 ) SetSepWidth(_ttoi(pstrValue)); |
| 165 | else if( _tcscmp(pstrName, _T("sepimm")) == 0 ) SetSepImmMode(_tcscmp(pstrValue, _T("true")) == 0); |
| 166 | else CContainerUI::SetAttribute(pstrName, pstrValue); |
| 167 | } |
| 168 | |
| 169 | void CHorizontalLayoutUI::DoEvent(TEventUI& event) |
| 170 | { |
nothing calls this directly
no outgoing calls
no test coverage detected