| 378 | } |
| 379 | |
| 380 | Qt::ConnectionType blockingGUIThreadConnection() |
| 381 | { |
| 382 | if(QThread::currentThread() != qApp->thread()) |
| 383 | { |
| 384 | return Qt::BlockingQueuedConnection; |
| 385 | } |
| 386 | else |
| 387 | { |
| 388 | return Qt::DirectConnection; |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | bool checkPoint(const QPoint &p, const QWidget *w) |
| 393 | { |
no outgoing calls
no test coverage detected