aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/bug_926.qml
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-07-20 10:41:31 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:37 -0300
commite37426c8c4a1f041c2f4b9c0f560751aa4b9a924 (patch)
treecbcd4d631282a8cc7818cb4674bae6227a603c87 /tests/QtDeclarative/bug_926.qml
parent8ec69343969dd1ef767d9c8d38ce49d4280e5d4c (diff)
Fix bug 926 - "qmlRegisterType does not work with QObject"
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
Diffstat (limited to 'tests/QtDeclarative/bug_926.qml')
-rw-r--r--tests/QtDeclarative/bug_926.qml17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/QtDeclarative/bug_926.qml b/tests/QtDeclarative/bug_926.qml
new file mode 100644
index 000000000..50895db1c
--- /dev/null
+++ b/tests/QtDeclarative/bug_926.qml
@@ -0,0 +1,17 @@
+import Qt 4.7
+import Example 1.0
+
+Rectangle {
+ width: 100
+ height: 62
+
+ MyClass {
+ id: myClass
+ urla: "http://www.pyside.org"
+ }
+
+ Text {
+ id: name
+ text: myClass.urla
+ }
+}