From 2171b057e3e6273ae065b2754acec26887ad5ddf Mon Sep 17 00:00:00 2001 From: Sze Howe Koh Date: Tue, 10 Sep 2013 21:08:01 +0800 Subject: Doc: Remove section about how to start threads - Incomplete: It doesn't talk about how to use a raw QThread, or QRunnable, or Qt Concurrent. - Redundant: Its contents are already presented in QThread's class ref, and the line before this section links to the "Multithreading Technologies in Qt" overview page which provides a more complete intro Also remove snippet markers that are no longer used. Change-Id: I89b7bd72f10c8ffdfd9b7772e2493050aafc9c88 Reviewed-by: Jerome Pasion Reviewed-by: Thiago Macieira --- examples/widgets/tutorials/threads/hellothread/hellothread.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'examples/widgets/tutorials/threads/hellothread/hellothread.h') diff --git a/examples/widgets/tutorials/threads/hellothread/hellothread.h b/examples/widgets/tutorials/threads/hellothread/hellothread.h index c2d8ad73ee..281f2c6cb5 100644 --- a/examples/widgets/tutorials/threads/hellothread/hellothread.h +++ b/examples/widgets/tutorials/threads/hellothread/hellothread.h @@ -42,13 +42,12 @@ #define HELLOTHREAD_H #include -//! [1] -// hellothread/hellothread.h + class HelloThread : public QThread { Q_OBJECT private: void run(); }; -//! [1] + #endif // HELLOTHREAD_H -- cgit v1.2.3