aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/qml/doc/src/qml-extending.qdoc14
-rw-r--r--examples/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc2
-rw-r--r--examples/quick/canvas/doc/src/canvas.qdoc8
-rw-r--r--examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc2
-rw-r--r--examples/quick/text/doc/src/text.qdoc2
5 files changed, 14 insertions, 14 deletions
diff --git a/examples/qml/doc/src/qml-extending.qdoc b/examples/qml/doc/src/qml-extending.qdoc
index 7dbd147cc1..8f44e4f506 100644
--- a/examples/qml/doc/src/qml-extending.qdoc
+++ b/examples/qml/doc/src/qml-extending.qdoc
@@ -36,7 +36,7 @@ The \c Person type can be used from QML like this:
\snippet referenceexamples/adding/example.qml 0
-\section1 Declare the Person class
+\section1 Declare the Person Class
All QML types map to C++ types. Here we declare a basic C++ Person class
with the two properties we want accessible on the QML type - name and shoeSize.
@@ -45,7 +45,7 @@ type, the C++ class can be named differently, or appear in a namespace.
\snippet referenceexamples/adding/person.h 0
-\section1 Define the Person class
+\section1 Define the Person Class
\snippet referenceexamples/adding/person.cpp 0
@@ -56,7 +56,7 @@ The \c main.cpp file also calls the \c qmlRegisterType() function to
register the \c Person type with QML as a type in the People library version 1.0,
and defines the mapping between the C++ and QML class names.
-\section1 Running the example
+\section1 Running the Example
The main.cpp file in the example includes a simple shell application that
loads and runs the QML snippet shown at the beginning of this page.
@@ -106,7 +106,7 @@ The implementation of BirthdayParty property accessors is straight forward.
\snippet referenceexamples/properties/birthdayparty.cpp 0
-\section1 Running the example
+\section1 Running the Example
The main.cpp file in the example includes a simple shell application that
loads and runs the QML snippet shown at the beginning of this page.
@@ -162,7 +162,7 @@ The implementation of Boy and Girl are trivial.
All that is necessary is to implement the constructor, and to register the types
and their QML name with the QML engine.
-\section1 Running the example
+\section1 Running the Example
The BirthdayParty type has not changed since the previous example. The
celebrant and guests property still use the People type.
@@ -196,7 +196,7 @@ specification of a BirthdayParty through the use of a default property.
\snippet referenceexamples/default/example.qml 0
-\section1 Declaring the BirthdayParty class
+\section1 Declaring the BirthdayParty Class
The only difference between this example and the last, is the addition of the
\c DefaultProperty class info annotation.
@@ -209,7 +209,7 @@ property. It is purely a syntactic simplification, the behavior is identical
to specifying the property by name, but it can add a more natural feel in many
situations. The default property must be either an object or list property.
-\section1 Running the example
+\section1 Running the Example
The main.cpp file in the example includes a simple shell application that
loads and runs the QML snippet shown at the beginning of this page.
diff --git a/examples/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc b/examples/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc
index 579cc5f80f..8619c528a9 100644
--- a/examples/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc
+++ b/examples/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc
@@ -36,7 +36,7 @@
\include examples-run.qdocinc
- \section1 Get data
+ \section1 Get Data
\e{Get data} uses the XMLHttpRequest API to fetch an XML document from a
server. It displays the header of the HTTP response and the body of the XML
diff --git a/examples/quick/canvas/doc/src/canvas.qdoc b/examples/quick/canvas/doc/src/canvas.qdoc
index 2c4bd1f752..e5138e3f35 100644
--- a/examples/quick/canvas/doc/src/canvas.qdoc
+++ b/examples/quick/canvas/doc/src/canvas.qdoc
@@ -38,12 +38,12 @@
\include examples-run.qdocinc
- \section1 Red heart
+ \section1 Red Heart
\e{Red heart} uses the bezier curve API to stroke and fill a red heart.
\snippet canvas/bezierCurve/bezierCurve.qml 0
- \section1 Talk bubble
+ \section1 Talk Bubble
\e{Talk bubble} uses the quadraticCurveTo() API to stroke and fill a
customized talk bubble:
@@ -57,12 +57,12 @@
\e Squircle uses a collection of simple moveTo() and lineTo() path APIs to
draw a smooth squircle.
- \section1 Rounded rectangle
+ \section1 Rounded Rectangle
\e{Rounded rectangle} uses a collection of lineTo() and arcTo() path APIs to
draw a rounded rectangle.
- \section1 Smile face
+ \section1 Smile Face
\e{Smile face} uses several paths to draw and fill a smiling face.
diff --git a/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc b/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc
index cdf4cadf82..d823074b37 100644
--- a/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc
+++ b/examples/quick/painteditem/textballoons/doc/src/textballoons.qdoc
@@ -83,7 +83,7 @@
returned by the \l {QQuickPaintedItem::}{contentsBoundingRect()} function is the size
of the item as defined in the QML file.
- \section1 textballoons.qml file
+ \section1 Textballoons.qml File
The Interface consists of two main parts. The scrollable area with the
textballoons and the controls button to add new balloons.
diff --git a/examples/quick/text/doc/src/text.qdoc b/examples/quick/text/doc/src/text.qdoc
index 8ef79ab9d9..e882ba3535 100644
--- a/examples/quick/text/doc/src/text.qdoc
+++ b/examples/quick/text/doc/src/text.qdoc
@@ -73,7 +73,7 @@
\e Banner is a simple example showing how to create a banner using a row of
text types and a \l NumberAnimation.
- \section1 Img tag
+ \section1 Img Tag
\e{Img tag} shows different ways of displaying images in text objects using
the \c{<img>} tag.