| 901 | } |
| 902 | |
| 903 | void MacroActionMacroEdit::SetupMacroInput(Macro *macro) const |
| 904 | { |
| 905 | if (macro) { |
| 906 | _inputs->SetInputVariablesAndValues( |
| 907 | macro->GetInputVariables(), |
| 908 | _entryData->_runOptions.inputs); |
| 909 | } else { |
| 910 | _inputs->SetInputVariablesAndValues({}, {}); |
| 911 | } |
| 912 | } |
| 913 | |
| 914 | void MacroActionMacro::RunOptions::Save(obs_data_t *obj) const |
| 915 | { |
nothing calls this directly
no test coverage detected