| 49 | } |
| 50 | |
| 51 | void CompletionHintWidget::enterEvent(QEnterEvent *event) |
| 52 | { |
| 53 | Q_UNUSED(event); |
| 54 | m_isHovered = true; |
| 55 | setCursor(Qt::PointingHandCursor); |
| 56 | update(); |
| 57 | } |
| 58 | |
| 59 | void CompletionHintWidget::leaveEvent(QEvent *event) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected