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