| 943 | } |
| 944 | |
| 945 | void |
| 946 | Node::removeAllImagesFromCache(bool blocking) |
| 947 | { |
| 948 | AppInstancePtr app = getApp(); |
| 949 | |
| 950 | if (!app) { |
| 951 | return; |
| 952 | } |
| 953 | ProjectPtr proj = app->getProject(); |
| 954 | |
| 955 | if ( proj->isProjectClosing() || proj->isLoadingProject() ) { |
| 956 | return; |
| 957 | } |
| 958 | appPTR->removeAllCacheEntriesForHolder(this, blocking); |
| 959 | } |
| 960 | |
| 961 | void |
| 962 | Node::doComputeHashOnMainThread() |
no test coverage detected