| 332 | } |
| 333 | |
| 334 | void ComboBox::insertItemAt(size_t _index, const UString& _item, Any _data) |
| 335 | { |
| 336 | mList->insertItemAt(_index, _item, _data); |
| 337 | mItemIndex = ITEM_NONE; //FIXME |
| 338 | mList->setIndexSelected(mItemIndex); //FIXME |
| 339 | } |
| 340 | |
| 341 | void ComboBox::removeItemAt(size_t _index) |
| 342 | { |
nothing calls this directly
no test coverage detected