| 75 | } |
| 76 | |
| 77 | void FilterThread::setFilter(const std::shared_ptr<ImageFilterPluginInterface>& filterPlugin) { |
| 78 | QMutexLocker locker(&_mutex); |
| 79 | _filterPlugin.reset(); |
| 80 | _filterPlugin = filterPlugin; |
| 81 | } |
| 82 | |
| 83 | void FilterThread::removeFilter() { |
| 84 | stopFilter(); |
nothing calls this directly
no outgoing calls
no test coverage detected