| 38 | } |
| 39 | |
| 40 | bool CMakeHomeDocumentation::eventFilter(QObject* watched, QEvent* event) |
| 41 | { |
| 42 | if (event->type() == QEvent::MouseButtonPress) |
| 43 | event->ignore(); // Propagate to DocumentationView |
| 44 | return QObject::eventFilter(watched, event); |
| 45 | } |
| 46 | |
| 47 | #include "moc_cmakehelpdocumentation.cpp" |
nothing calls this directly
no test coverage detected