| 348 | } |
| 349 | |
| 350 | void ActionQueueSignalManager::StartNewQueue(const QString &name) |
| 351 | { |
| 352 | auto weakQueue = GetWeakActionQueueByQString(name); |
| 353 | auto queue = weakQueue.lock(); |
| 354 | if (!queue) { |
| 355 | return; |
| 356 | } |
| 357 | if (queue->RunsOnStartup()) { |
| 358 | queue->Start(); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | void SaveActionQueues(obs_data_t *obj) |
| 363 | { |
nothing calls this directly
no test coverage detected