| 22 | } |
| 23 | |
| 24 | std::string SourceSettingButton::ToString() const |
| 25 | { |
| 26 | if (id.empty()) { |
| 27 | return ""; |
| 28 | } |
| 29 | return "[" + id + "] " + description; |
| 30 | } |
| 31 | |
| 32 | static void getSourceButtonsHelper(obs_properties_t *sourceProperties, |
| 33 | std::vector<SourceSettingButton> &buttons) |
no test coverage detected