summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorhjk <qthjk@ovi.com>2012-12-10 13:23:10 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-10 21:15:03 +0100
commit2a9144541577d24ca010fe6a219f514a2cf208dc (patch)
treef04546dd0d1dfbab9fe21719302bb6062466a495 /examples
parent159713de3b00db199ccf08de23f93a5297491f5c (diff)
Mark \brief comments in thread examples.
Change-Id: Ib496b1e500820774354c20003edb22748324cb5f Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/threads/doc/src/mandelbrot.qdoc2
-rw-r--r--examples/threads/doc/src/queuedcustomtype.qdoc2
-rw-r--r--examples/threads/doc/src/semaphores.qdoc2
-rw-r--r--examples/threads/doc/src/waitconditions.qdoc2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/threads/doc/src/mandelbrot.qdoc b/examples/threads/doc/src/mandelbrot.qdoc
index 45ef2ba9f7..a76b856616 100644
--- a/examples/threads/doc/src/mandelbrot.qdoc
+++ b/examples/threads/doc/src/mandelbrot.qdoc
@@ -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.
diff --git a/examples/threads/doc/src/queuedcustomtype.qdoc b/examples/threads/doc/src/queuedcustomtype.qdoc
index 35e6185d3b..43d47d42cc 100644
--- a/examples/threads/doc/src/queuedcustomtype.qdoc
+++ b/examples/threads/doc/src/queuedcustomtype.qdoc
@@ -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
diff --git a/examples/threads/doc/src/semaphores.qdoc b/examples/threads/doc/src/semaphores.qdoc
index bea0447f02..0b811f9466 100644
--- a/examples/threads/doc/src/semaphores.qdoc
+++ b/examples/threads/doc/src/semaphores.qdoc
@@ -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.
diff --git a/examples/threads/doc/src/waitconditions.qdoc b/examples/threads/doc/src/waitconditions.qdoc
index 6d42719f8d..ea49a93d60 100644
--- a/examples/threads/doc/src/waitconditions.qdoc
+++ b/examples/threads/doc/src/waitconditions.qdoc
@@ -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.