| 42 | } |
| 43 | |
| 44 | bool LuaBaseComponent::removeCallbacks(String const& groupName) { |
| 45 | if (m_callbacks.remove(groupName)) { |
| 46 | if (m_context) |
| 47 | m_context->remove(groupName); |
| 48 | return true; |
| 49 | } |
| 50 | return false; |
| 51 | } |
| 52 | |
| 53 | bool LuaBaseComponent::autoReInit() const { |
| 54 | return (bool)m_reloadTracker; |
no test coverage detected