| 69 | } |
| 70 | |
| 71 | void ToolTipPrivate::hideTip() |
| 72 | { |
| 73 | if (tipLabel) { |
| 74 | tipLabel->close(); |
| 75 | tipLabel->deleteLater(); |
| 76 | tipLabel = nullptr; |
| 77 | } |
| 78 | |
| 79 | showTimer.stop(); |
| 80 | hideDelayTimer.stop(); |
| 81 | qApp->removeEventFilter(q); |
| 82 | Q_EMIT q->hidden(); |
| 83 | } |
| 84 | |
| 85 | void ToolTipPrivate::delayHideTip() |
| 86 | { |
no test coverage detected