summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextinput/data
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-05-06 17:42:53 +1000
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-05-06 17:42:53 +1000
commita0ff96a8fd1cbf1206afd12e0062949fa035f64f (patch)
treeae00b137f60bbb8160990235a469baa7e92667f5 /tests/auto/declarative/qdeclarativetextinput/data
parent385799a8269dfb5b48de9e84e52af780fb400272 (diff)
Call QDeclarativeItem::geometryChanged() base implementation
Diffstat (limited to 'tests/auto/declarative/qdeclarativetextinput/data')
-rw-r--r--tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml12
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 0000000000..a9b50feae2
--- /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
+ }
+}