| 243 | |
| 244 | template<typename T> |
| 245 | static inline void populateSelection(QComboBox *list, |
| 246 | const std::map<T, std::string> &options) |
| 247 | { |
| 248 | for (const auto &[value, name] : options) { |
| 249 | list->addItem(obs_module_text(name.c_str()), |
| 250 | static_cast<int>(value)); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | MacroActionWaitEdit::MacroActionWaitEdit( |
| 255 | QWidget *parent, std::shared_ptr<MacroActionWait> entryData) |
no test coverage detected