| 184 | } |
| 185 | |
| 186 | ComboBox::IndexType ComboBox::GetItemCount() const { |
| 187 | return static_cast<IndexType>( m_entries.size() ); |
| 188 | } |
| 189 | |
| 190 | const sf::String& ComboBox::GetItem( IndexType index ) const { |
| 191 | if( index >= static_cast<IndexType>( m_entries.size() ) || index < 0 ) { |