| 237 | |
| 238 | |
| 239 | void UBSceneCache::shiftUpScenes(std::shared_ptr<UBDocumentProxy> proxy, int startIncIndex, int endIncIndex) |
| 240 | { |
| 241 | for(int i = endIncIndex; i >= startIncIndex; i--) |
| 242 | { |
| 243 | UBApplication::showMessage(QObject::tr("Moving cached scenes (%1/%2)").arg(i).arg(endIncIndex)); |
| 244 | internalMoveScene(proxy, i, i + 1); |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | |
| 249 | void UBSceneCache::internalMoveScene(std::shared_ptr<UBDocumentProxy> proxy, int sourceIndex, int targetIndex) |
no outgoing calls
no test coverage detected