aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/bug_825.qml
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-05-05 14:43:28 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:19 -0300
commit442bcd9d54b64e89f290e5f983f4fdcc5dac3381 (patch)
tree1def9aaad89721b900a503f20ba6b24a20d6faad /tests/QtDeclarative/bug_825.qml
parent8cb9b6d1973e9a1500399c2a2cab151d557c38d7 (diff)
Fix bug 825 - "Can't register a class using that uses metaclasses in QML using qmlRegisterType"
Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests/QtDeclarative/bug_825.qml')
-rw-r--r--tests/QtDeclarative/bug_825.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/QtDeclarative/bug_825.qml b/tests/QtDeclarative/bug_825.qml
new file mode 100644
index 000000000..dc1c450db
--- /dev/null
+++ b/tests/QtDeclarative/bug_825.qml
@@ -0,0 +1,10 @@
+import Qt 4.7
+import bugs 1.0
+
+Item {
+ width: 300; height: 200
+
+ Bug825 {
+
+ }
+}