| 153 | } |
| 154 | |
| 155 | void runOnUiThread(std::function<void()> callback) |
| 156 | { |
| 157 | ExecEvent* event = new ExecEvent(); |
| 158 | event->SetCallback(callback); |
| 159 | wxGetApp().QueueEvent(event); |
| 160 | execSemaphore.Wait(); |
| 161 | } |
| 162 | |
| 163 | void postToUiThread(std::function<void()> callback) |
| 164 | { |
nothing calls this directly
no test coverage detected