| 1315 | |
| 1316 | |
| 1317 | void |
| 1318 | Node::Implementation::abortPreview_non_blocking() |
| 1319 | { |
| 1320 | bool computing; |
| 1321 | { |
| 1322 | QMutexLocker locker(&computingPreviewMutex); |
| 1323 | computing = computingPreview; |
| 1324 | } |
| 1325 | |
| 1326 | if (computing) { |
| 1327 | QMutexLocker l(&mustQuitPreviewMutex); |
| 1328 | ++mustQuitPreview; |
| 1329 | } |
| 1330 | } |
| 1331 | |
| 1332 | void |
| 1333 | Node::Implementation::abortPreview_blocking(bool allowPreviewRenders) |
no outgoing calls
no test coverage detected