summaryrefslogtreecommitdiffstats
path: root/examples/declarative
diff options
context:
space:
mode:
authormae <qt-info@nokia.com>2010-03-16 15:15:17 (GMT)
committermae <qt-info@nokia.com>2010-03-16 15:18:03 (GMT)
commit3dd972ec56da468ab340afe02f04fa4216c53d63 (patch)
treea136fd46ebbfd24b760c3c675043a1b613781f93 /examples/declarative
parent55a55426f24685400b7ab062b221f248ac159821 (diff)
downloadQt-3dd972ec56da468ab340afe02f04fa4216c53d63.zip
Qt-3dd972ec56da468ab340afe02f04fa4216c53d63.tar.gz
Qt-3dd972ec56da468ab340afe02f04fa4216c53d63.tar.bz2
Fix documentation
Diffstat (limited to 'examples/declarative')
-rw-r--r--examples/declarative/plugins/README4
-rw-r--r--examples/declarative/plugins/plugins.qml4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/plugins/README b/examples/declarative/plugins/README
index 621f570..3ae256d 100644
--- a/examples/declarative/plugins/README
+++ b/examples/declarative/plugins/README
@@ -1,9 +1,9 @@
-This example shows a module "com.nokia.TimeExample" that is implelement
+This example shows a module "com.nokia.TimeExample" that is implemented
by a C++ plugin (providing the "Time" type), and by QML files (providing the
"Clock" type).
To run:
make install
- qmlviewer plugins.qml
+ qml plugins.qml
diff --git a/examples/declarative/plugins/plugins.qml b/examples/declarative/plugins/plugins.qml
index 44b552b..449cd9a 100644
--- a/examples/declarative/plugins/plugins.qml
+++ b/examples/declarative/plugins/plugins.qml
@@ -1,8 +1,8 @@
import com.nokia.TimeExample 1.0 // import types from the plugin
-Clock { // this class is defined in QML (files/Clock.qml)
+Clock { // this class is defined in QML (com/nokia/TimeExample/Clock.qml)
- Time { // this class is defined in C++ (plugins.cpp)
+ Time { // this class is defined in C++ (plugin.cpp)
id: time
}