| 52 | } |
| 53 | |
| 54 | void JsonUiManager::removeComponent(fl::weak_ptr<JsonUiInternal> component) FL_NOEXCEPT { |
| 55 | fl::unique_lock<fl::mutex> lock(mMutex); |
| 56 | mComponents.erase(component); |
| 57 | } |
| 58 | |
| 59 | void JsonUiManager::processPendingUpdates() FL_NOEXCEPT { |
| 60 | // Force immediate processing of pending updates (for testing) |
no test coverage detected