| 1232 | } |
| 1233 | } |
| 1234 | void Viewer::rotateRight() |
| 1235 | { |
| 1236 | render->rotateRight(); |
| 1237 | continuousRotation = (continuousRotation + 90) % 360; |
| 1238 | continuousPageProvider->setRotation(continuousRotation); |
| 1239 | if (continuousScroll) { |
| 1240 | continuousWidget->invalidateScaledImageCache(); |
| 1241 | } |
| 1242 | } |
| 1243 | |
| 1244 | // TODO |
| 1245 | void Viewer::setBookmark(bool set) |
nothing calls this directly
no test coverage detected