aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMate Barany <[email protected]>2025-06-03 15:39:37 +0200
committerMate Barany <[email protected]>2025-06-05 04:39:37 +0000
commita3156e57f0b6b91fe650bec9e2b124b95ba39704 (patch)
treed5308217a737856cf53b9fc4edd0837d977c49d0
parent2ba1997a4da2d069e5dc1e44ebb3544d9982df42 (diff)
Fix a comment in setDataThroughDelegate.qmlHEADdev
The second column refers to "age" which is supposed to be an int, not a string. Pick-to: 6.10 6.9 6.8 Change-Id: Ie21e9efa89b541e5b58ff9450c12dd66fe1c6700 Reviewed-by: Mitch Curtis <[email protected]>
-rw-r--r--tests/auto/qml/qqmltablemodel/data/setDataThroughDelegate.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qqmltablemodel/data/setDataThroughDelegate.qml b/tests/auto/qml/qqmltablemodel/data/setDataThroughDelegate.qml
index 847a89667f..bb74b9c2d7 100644
--- a/tests/auto/qml/qqmltablemodel/data/setDataThroughDelegate.qml
+++ b/tests/auto/qml/qqmltablemodel/data/setDataThroughDelegate.qml
@@ -53,7 +53,7 @@ Item {
Connections {
target: root
enabled: column === 1
- // Invalid: should be string.
+ // Invalid: should be an int.
function onShouldModifyInvalidType() { model.display = "Whoops" }
}
}