| 22 | } |
| 23 | |
| 24 | void MultiListItem::setCaption(const UString& _value) |
| 25 | { |
| 26 | MultiListBox* owner = getOwner(); |
| 27 | if (owner != nullptr) |
| 28 | owner->setColumnName(this, _value); |
| 29 | else |
| 30 | Base::setCaption(_value); |
| 31 | } |
| 32 | |
| 33 | const UString& MultiListItem::getCaption() const |
| 34 | { |
nothing calls this directly
no test coverage detected