| 109 | } |
| 110 | |
| 111 | LuaState::~LuaState() |
| 112 | { |
| 113 | if (L) { |
| 114 | lua_close(L); |
| 115 | L = Q_NULLPTR; |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | void LuaState::setVariable(const char* name, const QString& value) |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected