| 157 | } |
| 158 | |
| 159 | int ContinuousPageWidget::heightForWidth(int w) const |
| 160 | { |
| 161 | if (!continuousViewModel || w <= 0) { |
| 162 | return 0; |
| 163 | } |
| 164 | Q_UNUSED(w) |
| 165 | return continuousViewModel->totalHeight(); |
| 166 | } |
| 167 | |
| 168 | QSize ContinuousPageWidget::sizeHint() const |
| 169 | { |
nothing calls this directly
no test coverage detected