| 349 | } |
| 350 | |
| 351 | bool isObscured(QWidget *w) |
| 352 | { |
| 353 | return !(checkPoint(QPoint(0, 0), w) |
| 354 | && checkPoint(QPoint(w->width() - 1, 0), w) |
| 355 | && checkPoint(QPoint(0, w->height() - 1), w) |
| 356 | && checkPoint(QPoint(w->width() - 1, w->height() - 1), w) |
| 357 | && checkPoint(QPoint(w->width() / 2, w->height() / 2), w)); |
| 358 | } |
| 359 | |
| 360 | void openDebugLogfile() |
| 361 | { |
no test coverage detected