| 422 | } |
| 423 | |
| 424 | void IPProcessGrid::updateProgress(int progress) |
| 425 | { |
| 426 | // enable spinning progress for long operations |
| 427 | _longProcess = (progress < 0); |
| 428 | |
| 429 | if(_currentStep) |
| 430 | { |
| 431 | _currentStep->setProgress(progress); |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | |
| 436 | void IPProcessGrid::sceneRectChanged(const QRectF &rect) |
no test coverage detected