| 829 | } |
| 830 | |
| 831 | void OnSkipStart(const CommandContext &context) |
| 832 | { |
| 833 | auto &project = context.project; |
| 834 | wxCommandEvent evt; |
| 835 | |
| 836 | auto &controlToolBar = ControlToolBar::Get( project ); |
| 837 | controlToolBar.OnRewind(evt); |
| 838 | ProjectHistory::Get( project ).ModifyState(false); |
| 839 | } |
| 840 | |
| 841 | void OnSkipEnd(const CommandContext &context) |
| 842 | { |
nothing calls this directly
no test coverage detected