Mark \brief comments in thread examples.
authorhjk <qthjk@ovi.com>
Mon, 10 Dec 2012 12:23:10 +0000 (13:23 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Mon, 10 Dec 2012 20:15:03 +0000 (21:15 +0100)
Change-Id: Ib496b1e500820774354c20003edb22748324cb5f
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
examples/threads/doc/src/mandelbrot.qdoc
examples/threads/doc/src/queuedcustomtype.qdoc
examples/threads/doc/src/semaphores.qdoc
examples/threads/doc/src/waitconditions.qdoc

index 45ef2ba..a76b856 100644 (file)
@@ -29,7 +29,7 @@
     \example mandelbrot
     \title Mandelbrot Example
 
-    The Mandelbrot example shows how to use a worker thread to
+    \brief The Mandelbrot example shows how to use a worker thread to
     perform heavy computations without blocking the main thread's
     event loop.
 
index 35e6185..43d47d4 100644 (file)
@@ -29,7 +29,7 @@
     \example queuedcustomtype
     \title Queued Custom Type Example
 
-    The Queued Custom Type example shows how to send custom types between
+    \brief The Queued Custom Type example shows how to send custom types between
     threads with queued signals and slots.
 
     \image queuedcustomtype-example.png
index bea0447..0b811f9 100644 (file)
@@ -29,7 +29,7 @@
     \example semaphores
     \title Semaphores Example
 
-    The Semaphores example shows how to use QSemaphore to control
+    \brief The Semaphores example shows how to use QSemaphore to control
     access to a circular buffer shared by a producer thread and a
     consumer thread.
 
index 6d42719..ea49a93 100644 (file)
@@ -29,7 +29,7 @@
     \example waitconditions
     \title Wait Conditions Example
 
-    The Wait Conditions example shows how to use QWaitCondition and
+    \brief The Wait Conditions example shows how to use QWaitCondition and
     QMutex to control access to a circular buffer shared by a
     producer thread and a consumer thread.