summaryrefslogtreecommitdiffstats
path: root/examples/customproxy
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2013-10-16 12:49:19 +0200
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2013-10-18 07:51:37 +0300
commitd7b9b0d216f594ce9964ee3c8253f1c8ba2a920a (patch)
treeb379c8261b2abaf7dbca02b95f524c050cefa582 /examples/customproxy
parent790a1797eb43aa063240de829f5a34b4a7c86753 (diff)
Doc: language/style review datavisualization doc
Task-number: QTBUG-33360 Change-Id: Ib6918dcc4c0ee213dddb118616940306a10001fa Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
Diffstat (limited to 'examples/customproxy')
-rw-r--r--examples/customproxy/doc/src/customproxy.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/customproxy/doc/src/customproxy.qdoc b/examples/customproxy/doc/src/customproxy.qdoc
index 288a7149..be2e2a96 100644
--- a/examples/customproxy/doc/src/customproxy.qdoc
+++ b/examples/customproxy/doc/src/customproxy.qdoc
@@ -32,7 +32,7 @@
This example defines a simple flexible data set \c VariantDataSet where each data item is a
a variant list. Each item can have multiple different values, identified by their index in
- the list. In this example, the data set is storing monthly rainfall data, where value in
+ the list. In this example, the data set is storing monthly rainfall data, where the value in
index one is the year, index two contains the month, and the third value has the amount
of rainfall in that month.
@@ -95,7 +95,7 @@
\snippet ../examples/customproxy/variantbardatamapping.h 3
The primary way to use a \c VariantBarDataMapping object is to give the mappings already at the
- constructor, though they can be set later individually or all together with \c remap() method.
+ constructor, though they can be set later individually or all together with the \c remap() method.
A signal is emitted if mapping changes. It is basically a simplified version of
QItemModelBarDataMapping adapted to work with variant lists instead of item models.
@@ -106,7 +106,7 @@
\snippet ../examples/customproxy/rainfallgraph.cpp 0
- Bulk of that method is used for populating the variant data set. Once the set is populated,
+ The bulk of that method is used for populating the variant data set. Once the set is populated,
visualizing the data is trivial with the help of our custom proxy:
\snippet ../examples/customproxy/rainfallgraph.cpp 1