| 23 | } |
| 24 | |
| 25 | void ComboBoxControl::SetSelection(int index) |
| 26 | { |
| 27 | for (int i=0 ; i<m_cb->GetCount() ; i++) |
| 28 | { |
| 29 | if (m_cb->GetItemData(i)==index) |
| 30 | { |
| 31 | m_cb->SetCurSel(i); |
| 32 | return; |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | void ComboBoxControl::SetText(const std::string& text) |
| 38 | { |
no test coverage detected