| 3182 | } |
| 3183 | |
| 3184 | QString Document::pageSizeString(int page) const |
| 3185 | { |
| 3186 | if (d->m_generator) { |
| 3187 | if (d->m_generator->pagesSizeMetric() != Generator::None) { |
| 3188 | const Page *p = d->m_pagesVector.at(page); |
| 3189 | return d->localizedSize(QSizeF(p->width(), p->height())); |
| 3190 | } |
| 3191 | } |
| 3192 | return QString(); |
| 3193 | } |
| 3194 | |
| 3195 | static bool shouldCancelRenderingBecauseOf(const PixmapRequest &executingRequest, const PixmapRequest &otherRequest) |
| 3196 | { |
no test coverage detected