summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-09-22 00:06:49 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-09-22 00:06:49 (GMT)
commitc38c6f984f3b08db106dcd249c3339d42cc82aa3 (patch)
treefdba5d606aacc6a73c396850ce787c1e9bca68ad /examples
parent1ee038d05089aea25d3602f3e65592d7dd07b76f (diff)
downloadQt-c38c6f984f3b08db106dcd249c3339d42cc82aa3.zip
Qt-c38c6f984f3b08db106dcd249c3339d42cc82aa3.tar.gz
Qt-c38c6f984f3b08db106dcd249c3339d42cc82aa3.tar.bz2
Missing files.
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/modules/local/Foo.qml6
-rw-r--r--examples/declarative/modules/local/SubLib/Bar.qml6
2 files changed, 12 insertions, 0 deletions
diff --git a/examples/declarative/modules/local/Foo.qml b/examples/declarative/modules/local/Foo.qml
new file mode 100644
index 0000000..6cb07d5
--- /dev/null
+++ b/examples/declarative/modules/local/Foo.qml
@@ -0,0 +1,6 @@
+import Qt 4.6
+
+Text {
+ text: "lib/Foo.qml"
+ color: "#00ff00"
+}
diff --git a/examples/declarative/modules/local/SubLib/Bar.qml b/examples/declarative/modules/local/SubLib/Bar.qml
new file mode 100644
index 0000000..ad09d2e
--- /dev/null
+++ b/examples/declarative/modules/local/SubLib/Bar.qml
@@ -0,0 +1,6 @@
+import Qt 4.6
+
+Text {
+ text: "lib/SubLib/Bar.qml"
+ color: "#8898FF"
+}