| 416 | } |
| 417 | |
| 418 | void ImageDock::rotationChanged(int value) { |
| 419 | CONDITIONAL_LOCK_RETURN; |
| 420 | |
| 421 | for (auto* image : m_imageList) |
| 422 | image->setRotationAngle(value); |
| 423 | } |
| 424 | |
| 425 | void ImageDock::lockChanged(bool locked) { |
| 426 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected