| 231 | } |
| 232 | |
| 233 | LPVOID CComboUI::GetInterface(LPCTSTR pstrName) |
| 234 | { |
| 235 | if( _tcscmp(pstrName, DUI_CTR_COMBO) == 0 ) return static_cast<CComboUI*>(this); |
| 236 | if( _tcscmp(pstrName, _T("IListOwner")) == 0 ) return static_cast<IListOwnerUI*>(this); |
| 237 | return CContainerUI::GetInterface(pstrName); |
| 238 | } |
| 239 | |
| 240 | UINT CComboUI::GetControlFlags() const |
| 241 | { |
no outgoing calls
no test coverage detected