| 168 | } |
| 169 | |
| 170 | bool ToolTipManager::isNeedToolTip(Widget* _widget) |
| 171 | { |
| 172 | Widget* container = _widget->_getContainer(); |
| 173 | if (container != nullptr) |
| 174 | return container->getNeedToolTip(); |
| 175 | return _widget->getNeedToolTip(); |
| 176 | } |
| 177 | |
| 178 | size_t ToolTipManager::getToolTipIndex(Widget* _widget) const |
| 179 | { |
nothing calls this directly
no test coverage detected