| 141 | } |
| 142 | |
| 143 | void ToolTipManager::hideToolTip(Widget* _widget) |
| 144 | { |
| 145 | Widget* container = _widget->_getContainer(); |
| 146 | if (container != nullptr) |
| 147 | container->eventToolTip(container, ToolTipInfo(ToolTipInfo::Hide)); |
| 148 | else |
| 149 | _widget->eventToolTip(_widget, ToolTipInfo(ToolTipInfo::Hide)); |
| 150 | } |
| 151 | |
| 152 | void ToolTipManager::showToolTip(Widget* _widget, size_t _index, const IntPoint& _point) |
| 153 | { |
nothing calls this directly
no test coverage detected