| 46 | } |
| 47 | |
| 48 | GuiExecutor::~GuiExecutor() |
| 49 | { |
| 50 | if (IsExecutorThread()) |
| 51 | m_wnd.DestroyWindow(); |
| 52 | else |
| 53 | Call([this] { m_wnd.DestroyWindow(); }); |
| 54 | } |
| 55 | |
| 56 | ScheduledCall GuiExecutor::CallAt(const TimePoint& at, std::function<void ()> fn) |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected