summaryrefslogtreecommitdiffstats
path: root/examples/corelib/threads/queuedcustomtype/renderthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/corelib/threads/queuedcustomtype/renderthread.h')
-rw-r--r--examples/corelib/threads/queuedcustomtype/renderthread.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/corelib/threads/queuedcustomtype/renderthread.h b/examples/corelib/threads/queuedcustomtype/renderthread.h
index ed4df99bcc..c3152e4081 100644
--- a/examples/corelib/threads/queuedcustomtype/renderthread.h
+++ b/examples/corelib/threads/queuedcustomtype/renderthread.h
@@ -5,7 +5,6 @@
#define RENDERTHREAD_H
#include <QImage>
-#include <QMutex>
#include <QThread>
class Block;
@@ -20,7 +19,6 @@ public:
~RenderThread();
void processImage(const QImage &image);
- void stopProcess();
signals:
void sendBlock(const Block &block);
@@ -29,9 +27,7 @@ protected:
void run();
private:
- bool m_abort;
QImage m_image;
- QMutex mutex;
};
//! [RenderThread class definition]