| 322 | } |
| 323 | |
| 324 | static void runActionsHelper(Macro *macro, bool runElseActions, bool setInputs, |
| 325 | const StringList &inputs) |
| 326 | { |
| 327 | if (setInputs) { |
| 328 | macro->GetInputVariables().SetValues(inputs); |
| 329 | } |
| 330 | macro->PerformActions(!runElseActions, false, true); |
| 331 | } |
| 332 | |
| 333 | void MacroActionMacro::RunActions(Macro *actionMacro) const |
| 334 | { |
no test coverage detected