| 1192 | } |
| 1193 | |
| 1194 | bool MapWidget::keyReleaseEventFilter(QKeyEvent* event) |
| 1195 | { |
| 1196 | if (tool && tool->keyReleaseEvent(event)) |
| 1197 | { |
| 1198 | return true; // NOLINT |
| 1199 | } |
| 1200 | |
| 1201 | return false; |
| 1202 | } |
| 1203 | |
| 1204 | QVariant MapWidget::inputMethodQuery(Qt::InputMethodQuery property) const |
| 1205 | { |
no test coverage detected