summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2014-02-04 08:19:22 +0200
committerTomi Korpipää <tomi.korpipaa@digia.com>2014-02-04 08:19:57 +0200
commitf6f85d98e470ce3fbc5597f74f2f960bb9d40cbb (patch)
tree05390207bc20ed8731b6fe910e5fbda5f8e9db6d /examples
parent71b396926e229f129b242c59da8427bc1ddbc3ba (diff)
Docs uppercase fixes
Task-number: QTRD-2635 Change-Id: Ia4f709ba063675582da0adb875c191a631ca76fc Change-Id: Ia4f709ba063675582da0adb875c191a631ca76fc Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/qmlbars/doc/src/qmlbars.qdoc4
-rw-r--r--examples/qmlscatter/doc/src/qmlscatter.qdoc18
2 files changed, 11 insertions, 11 deletions
diff --git a/examples/qmlbars/doc/src/qmlbars.qdoc b/examples/qmlbars/doc/src/qmlbars.qdoc
index 574d36a3..cc344c9c 100644
--- a/examples/qmlbars/doc/src/qmlbars.qdoc
+++ b/examples/qmlbars/doc/src/qmlbars.qdoc
@@ -34,7 +34,7 @@
\section1 Data
The example data is monthly income and expenses of a fictional company over several years.
- The data is defined in a list model in \c data.qml like this:
+ The data is defined in a list model in \c Data.qml like this:
\snippet ../examples/qmlbars/qml/qmlbars/Data.qml 0
\dots
@@ -62,7 +62,7 @@
\section1 Custom axis labels
One interesting tidbit about axes is that we redefine the category labels for column axis in
- \c axes.qml. This is done because the data contains abbreviated month names, which we don't want
+ \c Axes.qml. This is done because the data contains abbreviated month names, which we don't want
to use for our column labels:
\snippet ../examples/qmlbars/qml/qmlbars/Axes.qml 0
diff --git a/examples/qmlscatter/doc/src/qmlscatter.qdoc b/examples/qmlscatter/doc/src/qmlscatter.qdoc
index 0903b875..fe86d740 100644
--- a/examples/qmlscatter/doc/src/qmlscatter.qdoc
+++ b/examples/qmlscatter/doc/src/qmlscatter.qdoc
@@ -63,16 +63,16 @@
We won't look into that any closer, as we'll change nothing in the generated
\c qtquick2applicationviewer files.
- Next we'll create new qml files for data (\c data.qml) and a QtQuick.Controls button
- we want to modify a bit (\c newbutton.qml), and add them to the resource file, in addition to
+ Next we'll create new qml files for data (\c Data.qml) and a QtQuick.Controls button
+ we want to modify a bit (\c NewButton.qml), and add them to the resource file, in addition to
main.qml:
\code
<RCC>
- <qresource prefix="/qml">
- <file alias="main.qml">qml/qmlscatter/main.qml</file>
- <file alias="Data.qml">qml/qmlscatter/data.qml</file>
- <file alias="NewButton.qml">qml/qmlscatter/newbutton.qml</file>
+ <qresource prefix="/">
+ <file>qml/qmlscatter/Data.qml</file>
+ <file>qml/qmlscatter/main.qml</file>
+ <file>qml/qmlscatter/NewButton.qml</file>
</qresource>
</RCC>
\endcode
@@ -89,7 +89,7 @@
\snippet ../examples/qmlscatter/qml/qmlscatter/main.qml 0
The last \c import just imports all the qml files in the same directory as our \c {main.qml},
- because that's where \c newbutton.qml and \c data.qml are.
+ because that's where \c NewButton.qml and \c Data.qml are.
Then we create our main \c Item and call it \c mainView:
@@ -134,7 +134,7 @@
The \c seriesData item contains the data models for all three series we use in this example.
- This is the component that holds our data in \c {data.qml}. It has an \c Item as the main
+ This is the component that holds our data in \c {Data.qml}. It has an \c Item as the main
component.
In the main component we'll add the data itself in a \c ListModel and name it
@@ -151,7 +151,7 @@
\snippet ../examples/qmlscatter/qml/qmlscatter/Data.qml 1
- Now we can use the data from \c data.qml with \c scatterGraph in \c {main.qml}. First we'll add
+ Now we can use the data from \c Data.qml with \c scatterGraph in \c {main.qml}. First we'll add
a Scatter3DSeries and call it \c {scatterSeries}:
\snippet ../examples/qmlscatter/qml/qmlscatter/main.qml 5