| 1417 | } |
| 1418 | |
| 1419 | bool checkForAbort() |
| 1420 | { |
| 1421 | QMutexLocker k(&abortRequestsMutex); |
| 1422 | |
| 1423 | if (abortRequests > 0) { |
| 1424 | abortRequests = 0; |
| 1425 | abortRequestsCond.wakeOne(); |
| 1426 | |
| 1427 | return true; |
| 1428 | } |
| 1429 | |
| 1430 | return false; |
| 1431 | } |
| 1432 | |
| 1433 | FileSystemModelPtr getModel() const |
| 1434 | { |
no outgoing calls
no test coverage detected