summaryrefslogtreecommitdiffstats
path: root/src/controls/TableView.qml
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2014-10-19 14:11:18 +0200
committerMitch Curtis <mitch.curtis@digia.com>2014-10-19 15:06:32 +0200
commite63548e7dbe065286d07b8bd06e7e8eea4399e73 (patch)
tree3549dc0c70546d812175a2cc5ad071b7f59fd950 /src/controls/TableView.qml
parent737379ad810d4431a93bed214f50b25632ba00e5 (diff)
Tidy up TableView delegate documentation.
Change-Id: Ib287fc432eba747df98874b9f1a3f203daf9b861 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/controls/TableView.qml')
-rw-r--r--src/controls/TableView.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/controls/TableView.qml b/src/controls/TableView.qml
index 983adaf54..7bcd311e1 100644
--- a/src/controls/TableView.qml
+++ b/src/controls/TableView.qml
@@ -165,9 +165,9 @@ ScrollView {
\note For performance reasons, created delegates can be recycled
across multiple table rows. This implies that when you make use of implicit
- properties such as \c styledata.row or \c model, these values can change also
- after the delegate has been constructed. In practice this means you should not assume
- that content is fixed when \c Component.onCompleted happens, but instead rely on
+ properties such as \c styleData.row or \c model, these values can change
+ after the delegate has been constructed. This means that you should not assume
+ that content is fixed when \c Component.onCompleted is called, but instead rely on
bindings to such properties.
*/
property Component itemDelegate: __style ? __style.itemDelegate : null
@@ -184,9 +184,9 @@ ScrollView {
\note For performance reasons, created delegates can be recycled
across multiple table rows. This implies that when you make use of implicit
- properties such as \c styledata.row or \c model, these values can change also
- after the delegate has been constructed. In practice this means you should not assume
- that content is fixed when \c Component.onCompleted happens, but instead rely on
+ properties such as \c styleData.row or \c model, these values can change
+ after the delegate has been constructed. This means that you should not assume
+ that content is fixed when \c Component.onCompleted is called, but instead rely on
bindings to such properties.
*/
property Component rowDelegate: __style ? __style.rowDelegate : null