| 250 | } |
| 251 | |
| 252 | void ExecutableSwitchWidget::swapSwitchData(ExecutableSwitchWidget *s1, |
| 253 | ExecutableSwitchWidget *s2) |
| 254 | { |
| 255 | SwitchWidget::swapSwitchData(s1, s2); |
| 256 | |
| 257 | ExecutableSwitch *t = s1->getSwitchData(); |
| 258 | s1->setSwitchData(s2->getSwitchData()); |
| 259 | s2->setSwitchData(t); |
| 260 | } |
| 261 | |
| 262 | void ExecutableSwitchWidget::ProcessChanged(const QString &text) |
| 263 | { |
nothing calls this directly
no test coverage detected