aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qml')
-rw-r--r--examples/qml/doc/src/qml-extending.qdoc14
-rw-r--r--examples/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc2
2 files changed, 8 insertions, 8 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