aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>2022-03-26 02:55:31 +0900
committerShawn Rutledge <shawn.rutledge@qt.io>2022-03-27 21:38:57 +0000
commit771b31c2355b9d3d6bc5673a0f076202985bdb4d (patch)
tree625575ea82ff82810d419979712635bda5d5df39 /examples
parent499828b855d125ac236917f6ed01d8f1e7d88505 (diff)
Replace paintedWidth/Height with contentWidth/Height
They were renamed in 51b7425329e0fa221c319e8d75595c19f664aedb Pick-to: 6.2 6.3 Task-number: QTBUG-15160 Change-Id: If30f69d47adf391d2d1c795caaf2bbe15f6bc32a Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/text/textselection/textselection.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/text/textselection/textselection.qml b/examples/quick/text/textselection/textselection.qml
index 7dcd2c962a..e05e8dca8c 100644
--- a/examples/quick/text/textselection/textselection.qml
+++ b/examples/quick/text/textselection/textselection.qml
@@ -83,8 +83,8 @@ Rectangle {
id: flick
anchors.fill: parent
- contentWidth: edit.paintedWidth
- contentHeight: edit.paintedHeight
+ contentWidth: edit.contentWidth
+ contentHeight: edit.contentHeight
interactive: true
clip: true