aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/painteditem
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-05-05 00:31:03 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-06 16:35:28 +0200
commit2f97b8ccde72628c29664c4a10c75336e3fead7b (patch)
tree8719bf38b8f0ca74888747eca48983f9fe0b4b0f /examples/quick/painteditem
parent49ef011e33b9ef977679b3d30f883fccea0d8748 (diff)
Doc: Make the titles of example pages consistent
Most of the example titles have either a "Qt Quick Examples -" prefix or a "Scene Graph -" prefix. Also fixed a typo ("Scenegraph" -> "Scene Graph") Change-Id: Ibeb25d88d1888be3fb004a9ad95dc7ccbfeed7e3 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'examples/quick/painteditem')
-rw-r--r--examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc b/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc
index 9450c19259..11fd073a54 100644
--- a/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc
+++ b/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc
@@ -27,7 +27,7 @@
/*!
- \title Scenegraph Painted Item Example
+ \title Scene Graph - Painted Item
\brief Shows how to implement QPainter-based custom scenegraph items.
\example customitems/painteditem
\ingroup qtquickexamples
@@ -72,7 +72,7 @@
\snippet quick/customitems/painteditem/textballoon.cpp 0
Then we implement the \c paint() function which is automatically called by
- the Scenegraph framework to paint the contents of the item. The function
+ the Scene Graph framework to paint the contents of the item. The function
paints the item in local coordinates.
\snippet quick/customitems/painteditem/textballoon.cpp 1