| 211 | } |
| 212 | |
| 213 | void PopupLineEditInput::changeEvent(QEvent *event) |
| 214 | { |
| 215 | if (event->type() == QEvent::ActivationChange){ |
| 216 | if (this->isActiveWindow() == false){ |
| 217 | InputRelease(); |
| 218 | return; |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | QWidget::changeEvent(event); |
| 223 | } |
| 224 | |
| 225 | |
| 226 | void PopupLineEditInput::InputRelease() |
nothing calls this directly
no test coverage detected