summaryrefslogtreecommitdiffstats
path: root/examples/qmlscatter/doc
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2014-02-03 09:22:38 +0200
committerTomi Korpipää <tomi.korpipaa@digia.com>2014-02-03 09:23:50 +0200
commit9b0eb42b0ef0871630374191914cc01983af1d47 (patch)
tree46e8ec6673701a782ec3329a898945dd4c421bf0 /examples/qmlscatter/doc
parent20945586166c9e5804de24d79ae0e998e21a088c (diff)
QML filename corrections, docs update
Change-Id: I0df3a913d7e96f8bf04133b67c61fe2c73b7bd64 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'examples/qmlscatter/doc')
-rw-r--r--examples/qmlscatter/doc/src/qmlscatter.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qmlscatter/doc/src/qmlscatter.qdoc b/examples/qmlscatter/doc/src/qmlscatter.qdoc
index fc982ebf..0903b875 100644
--- a/examples/qmlscatter/doc/src/qmlscatter.qdoc
+++ b/examples/qmlscatter/doc/src/qmlscatter.qdoc
@@ -140,7 +140,7 @@
In the main component we'll add the data itself in a \c ListModel and name it
\c {dataModel}:
- \snippet ../examples/qmlscatter/qml/qmlscatter/data.qml 0
+ \snippet ../examples/qmlscatter/qml/qmlscatter/Data.qml 0
\dots
We'll add two more of these for the other two series, and name them \c dataModelTwo and
@@ -149,7 +149,7 @@
Then we need to expose the data models to be usable from \c {main.qml}. We do this by defining
them as aliases in the main data component:
- \snippet ../examples/qmlscatter/qml/qmlscatter/data.qml 1
+ \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
a Scatter3DSeries and call it \c {scatterSeries}: