| 48 | } |
| 49 | |
| 50 | ComboBox::IndexType ComboBox::GetHighlightedItem() const { |
| 51 | return m_highlighted_item; |
| 52 | } |
| 53 | |
| 54 | void ComboBox::SelectItem( IndexType index ) { |
| 55 | if( index >= static_cast<IndexType>( m_entries.size() ) || index < 0 ) { |
no outgoing calls
no test coverage detected