| 100 | static_cast<ComboBox*>(this)->insertItemAt(_index, _name); |
| 101 | } |
| 102 | void MemberObsolete<ComboBox>::setItem(size_t _index, const UString& _item) |
| 103 | { |
| 104 | static_cast<ComboBox*>(this)->setItemNameAt(_index, _item); |
| 105 | } |
| 106 | const UString& MemberObsolete<ComboBox>::getItem(size_t _index) const |
| 107 | { |
| 108 | return static_cast<const ComboBox*>(this)->getItemNameAt(_index); |
nothing calls this directly
no test coverage detected