diff options
Diffstat (limited to 'krita/core/kis_thread_pool.h')
-rw-r--r-- | krita/core/kis_thread_pool.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/krita/core/kis_thread_pool.h b/krita/core/kis_thread_pool.h index 069cb5a5..904606bf 100644 --- a/krita/core/kis_thread_pool.h +++ b/krita/core/kis_thread_pool.h @@ -19,9 +19,9 @@ #ifndef KIS_THREAD_POOL_ #define KIS_THREAD_POOL_ -#include <qthread.h> -#include <qptrlist.h> -#include <qmutex.h> +#include <tqthread.h> +#include <tqptrlist.h> +#include <tqmutex.h> #include "kis_thread.h" @@ -54,14 +54,14 @@ private: KisThreadPool(const KisThreadPool&); KisThreadPool operator=(const KisThreadPool&); - QMutex m_poolMutex; + TQMutex m_poolMutex; int m_numberOfRunningThreads; int m_numberOfQueuedThreads; int m_maxThreads; int m_wait; - QPtrList<KisThread> m_threads; - QPtrList<KisThread> m_runningThreads; - QPtrList<KisThread> m_oldThreads; + TQPtrList<KisThread> m_threads; + TQPtrList<KisThread> m_runningThreads; + TQPtrList<KisThread> m_oldThreads; static KisThreadPool * m_singleton; }; |