Destructor implementation
| 51 | |
| 52 | // Destructor implementation |
| 53 | JsonTitleImpl::~JsonTitleImpl() { |
| 54 | // Ensure the component is removed from the global registry |
| 55 | removeJsonUiComponent(fl::weak_ptr<JsonUiInternal>(mInternal)); |
| 56 | |
| 57 | // No need to clear functions anymore as there are no lambdas capturing |
| 58 | // 'this' if (mInternal) { |
| 59 | // mInternal->clearFunctions(); |
| 60 | // } |
| 61 | } |
| 62 | |
| 63 | JsonTitleImpl &JsonTitleImpl::Group(const fl::string &name) FL_NOEXCEPT { |
| 64 | mInternal->setGroup(name); |
nothing calls this directly
no test coverage detected