diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-05-06 07:42:53 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-05-06 07:42:53 (GMT) |
commit | a0ff96a8fd1cbf1206afd12e0062949fa035f64f (patch) | |
tree | ae00b137f60bbb8160990235a469baa7e92667f5 /tests/auto/declarative/qdeclarativetextinput/data | |
parent | 385799a8269dfb5b48de9e84e52af780fb400272 (diff) | |
download | Qt-a0ff96a8fd1cbf1206afd12e0062949fa035f64f.zip Qt-a0ff96a8fd1cbf1206afd12e0062949fa035f64f.tar.gz Qt-a0ff96a8fd1cbf1206afd12e0062949fa035f64f.tar.bz2 |
Call QDeclarativeItem::geometryChanged() base implementation
Diffstat (limited to 'tests/auto/declarative/qdeclarativetextinput/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml new file mode 100644 index 0000000..a9b50fe --- /dev/null +++ b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml @@ -0,0 +1,12 @@ +import Qt 4.7 + +Item { + width: 400; height: 500; + property int bindingWidth: text.width + property int bindingHeight: text.height + + TextEdit { + id: text + anchors.fill: parent + } +} |