summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2013-06-25 01:48:31 +0200
committerFrederik Gladhorn <frederik.gladhorn@digia.com>2013-06-25 02:08:32 +0200
commit6488283914e10147472510186d539821e281f9bb (patch)
treeac0ea836b105d6c8a731e3dc32ba14d09545d9bd /doc
parenta995b3a58f4e877bb60b5b1b8105416986b0ebee (diff)
downloadqtenginio-6488283914e10147472510186d539821e281f9bb.tar.gz
Major doc improvements
Get the Qt Quick version of the docs to work and add documentation for much of model and reply classes.
Diffstat (limited to 'doc')
-rw-r--r--doc/snippets/models.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/models.qml b/doc/snippets/models.qml
index ae6e046..bd3f53e 100644
--- a/doc/snippets/models.qml
+++ b/doc/snippets/models.qml
@@ -64,7 +64,7 @@ Rectangle {
anchors.fill: parent
model: enginioModel
delegate: Text {
- text: model.name + ": " + model.population
+ text: name + ": " + population
}
}
//! [view]