| 689 | } |
| 690 | |
| 691 | void SequenceWidget::swapSwitchData(SequenceWidget *s1, SequenceWidget *s2) |
| 692 | { |
| 693 | SwitchWidget::swapSwitchData(s1, s2); |
| 694 | |
| 695 | SceneSequenceSwitch *t = s1->getSwitchData(); |
| 696 | s1->setSwitchData(s2->getSwitchData()); |
| 697 | s2->setSwitchData(t); |
| 698 | } |
| 699 | |
| 700 | void SequenceWidget::DelayChanged(const Duration &delay) |
| 701 | { |
nothing calls this directly
no test coverage detected