| 75 | } |
| 76 | |
| 77 | void Project::ReloadVideo() { |
| 78 | if (video_provider) { |
| 79 | DoLoadVideo(video_file); |
| 80 | context->videoController->JumpToFrame(context->videoController->GetFrameN()); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | void Project::ShowError(wxString const& message) { |
| 85 | wxMessageBox(message, "Error loading file", wxOK | wxICON_ERROR | wxCENTER, context->parent); |
nothing calls this directly
no test coverage detected