diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-09-22 00:06:49 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-09-22 00:06:49 (GMT) |
commit | c38c6f984f3b08db106dcd249c3339d42cc82aa3 (patch) | |
tree | fdba5d606aacc6a73c396850ce787c1e9bca68ad | |
parent | 1ee038d05089aea25d3602f3e65592d7dd07b76f (diff) | |
download | Qt-c38c6f984f3b08db106dcd249c3339d42cc82aa3.zip Qt-c38c6f984f3b08db106dcd249c3339d42cc82aa3.tar.gz Qt-c38c6f984f3b08db106dcd249c3339d42cc82aa3.tar.bz2 |
Missing files.
-rw-r--r-- | examples/declarative/modules/local/Foo.qml | 6 | ||||
-rw-r--r-- | examples/declarative/modules/local/SubLib/Bar.qml | 6 |
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" +} |