| 204 | } |
| 205 | |
| 206 | Document::~Document() |
| 207 | { |
| 208 | #ifdef DEBUG |
| 209 | // qDebug() << "Document::~Document()"; |
| 210 | #endif |
| 211 | clearPages(); |
| 212 | _pageCache.removeDocumentTiles(this); |
| 213 | } |
| 214 | |
| 215 | Document::size_type Document::numPages() const { QReadLocker docLocker(_docLock.data()); return _numPages; } |
| 216 | PDFPageProcessingThread &Document::processingThread() { QReadLocker docLocker(_docLock.data()); return _processingThread; } |
nothing calls this directly
no test coverage detected