summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/listview
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2010-05-14 11:18:33 (GMT)
committerKai Koehne <kai.koehne@nokia.com>2010-05-14 14:56:24 (GMT)
commit77e1ef8cb41f790115ff7552717e0ba4d33c3cf0 (patch)
tree143ff5a276bd20eaa36d1b4a5b14cafcbaaad6b4 /doc/src/snippets/declarative/listview
parent336feccaf4517605306844690103baf331f11d50 (diff)
downloadQt-77e1ef8cb41f790115ff7552717e0ba4d33c3cf0.zip
Qt-77e1ef8cb41f790115ff7552717e0ba4d33c3cf0.tar.gz
Qt-77e1ef8cb41f790115ff7552717e0ba4d33c3cf0.tar.bz2
Rename QML Runtime (executable) to QML Launcher
The qml executable was first referred to as QML Viewer, then QML Runtime ... however, the latter one caused much confusion (see old version of qmlruntime.qdoc). Doc changes reviewed by Leena Miettinen.
Diffstat (limited to 'doc/src/snippets/declarative/listview')
-rw-r--r--doc/src/snippets/declarative/listview/highlight.qml2
-rw-r--r--doc/src/snippets/declarative/listview/listview.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/snippets/declarative/listview/highlight.qml b/doc/src/snippets/declarative/listview/highlight.qml
index 794b3f2..1282f8d 100644
--- a/doc/src/snippets/declarative/listview/highlight.qml
+++ b/doc/src/snippets/declarative/listview/highlight.qml
@@ -4,7 +4,7 @@ Rectangle {
width: 180; height: 200; color: "white"
// ContactModel model is defined in dummydata/ContactModel.qml
- // The viewer automatically loads files in dummydata/* to assist
+ // The launcher automatically loads files in dummydata/* to assist
// development without a real data source.
// Define a delegate component. A component will be
diff --git a/doc/src/snippets/declarative/listview/listview.qml b/doc/src/snippets/declarative/listview/listview.qml
index 61bf126..44f0540 100644
--- a/doc/src/snippets/declarative/listview/listview.qml
+++ b/doc/src/snippets/declarative/listview/listview.qml
@@ -5,7 +5,7 @@ Rectangle {
width: 180; height: 200; color: "white"
// ContactModel model is defined in dummydata/ContactModel.qml
- // The viewer automatically loads files in dummydata/* to assist
+ // The launcher automatically loads files in dummydata/* to assist
// development without a real data source.
// Define a delegate component. A component will be