| 1666 | } |
| 1667 | |
| 1668 | void |
| 1669 | Node::removeAllImagesFromCache(bool blocking) |
| 1670 | { |
| 1671 | AppInstPtr app = getApp(); |
| 1672 | |
| 1673 | if (!app) { |
| 1674 | return; |
| 1675 | } |
| 1676 | boost::shared_ptr<Project> proj = app->getProject(); |
| 1677 | |
| 1678 | if ( proj->isProjectClosing() || proj->isLoadingProject() ) { |
| 1679 | return; |
| 1680 | } |
| 1681 | appPTR->removeAllCacheEntriesForHolder(this, blocking); |
| 1682 | } |
| 1683 | |
| 1684 | void |
| 1685 | Node::doComputeHashOnMainThread() |
no test coverage detected