| 470 | return std::nullopt; |
| 471 | } |
| 472 | std::vector<Tab> Window::removeTab(const std::uint32_t &id) |
| 473 | { |
| 474 | Globals::gData.removeTabById(id); |
| 475 | return Globals::gData.getTabs(); |
| 476 | } |
| 477 | bool Window::stopSound(const std::uint32_t &id) |
| 478 | { |
| 479 | std::optional<std::uint32_t> remoteSoundId; |
nothing calls this directly
no test coverage detected