| 1162 | } |
| 1163 | |
| 1164 | void UBBoardController::previousScene() |
| 1165 | { |
| 1166 | if (mActiveSceneIndex > 0) |
| 1167 | { |
| 1168 | QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); |
| 1169 | setActiveDocumentScene(mActiveSceneIndex - 1); |
| 1170 | QApplication::restoreOverrideCursor(); |
| 1171 | } |
| 1172 | |
| 1173 | updateActionStates(); |
| 1174 | } |
| 1175 | |
| 1176 | |
| 1177 | void UBBoardController::nextScene() |
no outgoing calls
no test coverage detected