| 40 | } |
| 41 | |
| 42 | std::unique_ptr<RenderQueue> ComboBox::InvalidateImpl() const { |
| 43 | return Context::Get().GetEngine().CreateComboBoxDrawable( std::dynamic_pointer_cast<const ComboBox>( shared_from_this() ) ); |
| 44 | } |
| 45 | |
| 46 | ComboBox::IndexType ComboBox::GetSelectedItem() const { |
| 47 | return m_active_item; |
nothing calls this directly
no test coverage detected