| 102 | } |
| 103 | |
| 104 | bool MacroActionQueue::Load(obs_data_t *obj) |
| 105 | { |
| 106 | MacroAction::Load(obj); |
| 107 | _macro.Load(obj); |
| 108 | _action = static_cast<MacroActionQueue::Action>( |
| 109 | obs_data_get_int(obj, "action")); |
| 110 | _queue = GetWeakActionQueueByName(obs_data_get_string(obj, "queue")); |
| 111 | return true; |
| 112 | } |
| 113 | |
| 114 | std::string MacroActionQueue::GetShortDesc() const |
| 115 | { |
nothing calls this directly
no test coverage detected