diff options
author | Tasuku Suzuki <[email protected]> | 2022-03-26 02:55:31 +0900 |
---|---|---|
committer | Shawn Rutledge <[email protected]> | 2022-03-27 21:38:57 +0000 |
commit | 771b31c2355b9d3d6bc5673a0f076202985bdb4d (patch) | |
tree | 625575ea82ff82810d419979712635bda5d5df39 /examples/quick/text/textselection/textselection.qml | |
parent | 499828b855d125ac236917f6ed01d8f1e7d88505 (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 <[email protected]>
Diffstat (limited to 'examples/quick/text/textselection/textselection.qml')
-rw-r--r-- | examples/quick/text/textselection/textselection.qml | 4 |
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 |