| 775 | } |
| 776 | |
| 777 | void CComboUI::SetPos(RECT rc) |
| 778 | { |
| 779 | // Put all elements out of sight |
| 780 | RECT rcNull = { 0 }; |
| 781 | for( int i = 0; i < m_items.GetSize(); i++ ) static_cast<CControlUI*>(m_items[i])->SetPos(rcNull); |
| 782 | // Position this control |
| 783 | CControlUI::SetPos(rc); |
| 784 | } |
| 785 | |
| 786 | void CComboUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) |
| 787 | { |
no test coverage detected