| 252 | |
| 253 | template<class T> |
| 254 | static inline void populateSelection(QComboBox *list, const T &map) |
| 255 | { |
| 256 | for (const auto &[value, name] : map) { |
| 257 | list->addItem(obs_module_text(name.c_str()), |
| 258 | static_cast<int>(value)); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | static QStringList getSourcesList() |
| 263 | { |
no test coverage detected