| 19 | } |
| 20 | |
| 21 | void TabItem::shutdownOverride() |
| 22 | { |
| 23 | TabControl* owner = getParent() != nullptr ? getParent()->castType<TabControl>(false) : nullptr; |
| 24 | if (owner != nullptr) |
| 25 | owner->_notifyDeleteItem(this); |
| 26 | |
| 27 | Base::shutdownOverride(); |
| 28 | } |
| 29 | |
| 30 | void TabItem::setCaption(const UString& _value) |
| 31 | { |
nothing calls this directly
no test coverage detected