mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Issue #126: Remove <QtCore> include from main headers
This commit is contained in:
@ -24,11 +24,13 @@
|
||||
#include "pdfpainter.h"
|
||||
#include "pdftextlayout.h"
|
||||
|
||||
#include <QCache>
|
||||
#include <QFuture>
|
||||
#include <QFutureWatcher>
|
||||
#include <QWaitCondition>
|
||||
|
||||
template <class Key, class T>
|
||||
class QCache;
|
||||
|
||||
namespace pdf
|
||||
{
|
||||
class PDFDrawWidgetProxy;
|
||||
@ -143,7 +145,7 @@ private:
|
||||
PDFAsynchronousPageCompilerWorkerThread* m_thread = nullptr;
|
||||
|
||||
PDFDrawWidgetProxy* m_proxy;
|
||||
QCache<PDFInteger, PDFPrecompiledPage> m_cache;
|
||||
QCache<PDFInteger, PDFPrecompiledPage>* m_cache;
|
||||
|
||||
/// This task is protected by mutex. Every access to this
|
||||
/// variable must be done with locked mutex.
|
||||
|
Reference in New Issue
Block a user