| 8365 | } |
| 8366 | |
| 8367 | QVariant MainWindow::inputMethodQuery(Qt::InputMethodQuery query) const { |
| 8368 | // Forward IME queries to the focused widget |
| 8369 | QWidget *focusWidget = QApplication::focusWidget(); |
| 8370 | if (focusWidget && focusWidget != this) { |
| 8371 | return focusWidget->inputMethodQuery(query); |
| 8372 | } |
| 8373 | |
| 8374 | // Default handling |
| 8375 | return QMainWindow::inputMethodQuery(query); |
| 8376 | } |
| 8377 | |
| 8378 | |
| 8379 |
nothing calls this directly
no outgoing calls
no test coverage detected