summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/network.qdoc
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-03-29 00:51:24 (GMT)
committerBea Lam <bea.lam@nokia.com>2010-03-29 01:00:12 (GMT)
commiteb125f983d274d6ddb48c96389b344b8f45bbbd0 (patch)
tree3bac25f40109051828ab6a62f24c4e3cc6f95990 /doc/src/declarative/network.qdoc
parent9618d60aecf2609f50bc573874eef6d4a52a24e3 (diff)
downloadQt-eb125f983d274d6ddb48c96389b344b8f45bbbd0.zip
Qt-eb125f983d274d6ddb48c96389b344b8f45bbbd0.tar.gz
Qt-eb125f983d274d6ddb48c96389b344b8f45bbbd0.tar.bz2
Remove references to qmlviewer in docs.
Diffstat (limited to 'doc/src/declarative/network.qdoc')
-rw-r--r--doc/src/declarative/network.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/network.qdoc b/doc/src/declarative/network.qdoc
index e642257..f1d4db1 100644
--- a/doc/src/declarative/network.qdoc
+++ b/doc/src/declarative/network.qdoc
@@ -69,7 +69,7 @@ Network transparency is supported throughout QML, for example:
\o WebViews - the \c url property of WebView (obviously!)
\endlist
-Even QML types themselves can be on the network - if \l qmlviewer is used to load
+Even QML types themselves can be on the network - if the \l {Qt Declarative UI Runtime}{qml} tool is used to load
\tt http://example.com/mystuff/Hello.qml and that content refers to a type "World", this
will load from \tt http://example.com/mystuff/World.qml just as it would for a local file.
Any other resources that \tt Hello.qml referred to, usually by a relative URL, would
@@ -131,7 +131,7 @@ See the \tt demos/declarative/flickr for a real demonstration of this.
All network access from QML is managed by a QNetworkAccessManager set on the QDeclarativeEngine which executes the QML.
By default, this is an unmodified Qt QNetworkAccessManager. You may set a different manager using
QDeclarativeEngine::setNetworkAccessManager() as appropriate for the policies of your application.
-For example, the \l qmlviewer tool sets a new QNetworkAccessManager which
+For example, the \l {Qt Declarative UI Runtime}{qml} tool sets a new QNetworkAccessManager which
trusts HTTP Expiry headers to avoid network cache checks, allows HTTP Pipelining, adds a persistent HTTP CookieJar,
a simple disk cache, and supports proxy settings.