| 262 | } |
| 263 | |
| 264 | void SwitchWidget::swapSwitchData(SwitchWidget *s1, SwitchWidget *s2) |
| 265 | { |
| 266 | SceneSwitcherEntry *t = s1->getSwitchData(); |
| 267 | s1->setSwitchData(s2->getSwitchData()); |
| 268 | s2->setSwitchData(t); |
| 269 | } |
| 270 | |
| 271 | bool isPreviousScene(const QString &text) |
| 272 | { |
nothing calls this directly
no test coverage detected