Commit e63548e7 authored by Mitch Curtis's avatar Mitch Curtis Committed by Mitch Curtis
Browse files

Tidy up TableView delegate documentation.


Change-Id: Ib287fc432eba747df98874b9f1a3f203daf9b861
Reviewed-by: default avatarJ-P Nurmi <jpnurmi@theqtcompany.com>
parent 737379ad
No related merge requests found
Showing with 6 additions and 6 deletions
......@@ -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
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment