| 421 | } |
| 422 | |
| 423 | void InlineScript::ScriptDeleter::operator()(obs_script_t *script) |
| 424 | { |
| 425 | DestroyOBSScript(script); |
| 426 | if (!tempScriptPath.empty()) { |
| 427 | cleanupScriptFile(tempScriptPath); |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | ScriptEditor::ScriptEditor(QWidget *parent) : VariableTextEdit(parent, 15, 5) |
| 432 | { |
nothing calls this directly
no test coverage detected