summaryrefslogtreecommitdiffstats
path: root/examples/threads/mandelbrot/renderthread.cpp
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@digia.com>2012-11-23 14:27:50 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-25 01:34:07 +0100
commit4ac521354dfa575c31ecb732a0f8c1e18827c21e (patch)
tree20833a59d0c291c582332c4cc0f7e724d1c9b996 /examples/threads/mandelbrot/renderthread.cpp
parentd5ec06be6397b807b743aa46707ff45aa9dccafa (diff)
QtBase: example code style
Change-Id: I0685f7e2c7c698a4bf288b8b1ae909167932a3fb Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'examples/threads/mandelbrot/renderthread.cpp')
-rw-r--r--examples/threads/mandelbrot/renderthread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/threads/mandelbrot/renderthread.cpp b/examples/threads/mandelbrot/renderthread.cpp
index 9d4b199912..ea4c18f88b 100644
--- a/examples/threads/mandelbrot/renderthread.cpp
+++ b/examples/threads/mandelbrot/renderthread.cpp
@@ -38,12 +38,12 @@
**
****************************************************************************/
+#include "renderthread.h"
+
#include <QtWidgets>
#include <math.h>
-#include "renderthread.h"
-
//! [0]
RenderThread::RenderThread(QObject *parent)
: QThread(parent)