summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2009-08-11 10:29:21 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-08-11 10:29:21 (GMT)
commitf5408614bf3fe20ad5c4937c2329c8a77b8753cf (patch)
tree14648e99f6d8d8ec1f7b8e789ed833ac2a050703 /doc/src/snippets
parentef9fec988d3d7ea33836a08128119f99747dc9d5 (diff)
downloadQt-f5408614bf3fe20ad5c4937c2329c8a77b8753cf.zip
Qt-f5408614bf3fe20ad5c4937c2329c8a77b8753cf.tar.gz
Qt-f5408614bf3fe20ad5c4937c2329c8a77b8753cf.tar.bz2
Update URL of online documentation.
Reviewed-by: Trust Me
Diffstat (limited to 'doc/src/snippets')
-rw-r--r--doc/src/snippets/code/src_xml_dom_qdom.cpp4
-rw-r--r--doc/src/snippets/qmake/comments.pro2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/snippets/code/src_xml_dom_qdom.cpp b/doc/src/snippets/code/src_xml_dom_qdom.cpp
index 50a4124..622295d 100644
--- a/doc/src/snippets/code/src_xml_dom_qdom.cpp
+++ b/doc/src/snippets/code/src_xml_dom_qdom.cpp
@@ -77,9 +77,9 @@ QDomElement e = //...
//...
QDomAttr a = e.attributeNode("href");
cout << a.value() << endl; // prints "http://qt.nokia.com"
-a.setValue("http://doc.trolltech.com"); // change the node's attribute
+a.setValue("http://qt.nokia.com/doc"); // change the node's attribute
QDomAttr a2 = e.attributeNode("href");
-cout << a2.value() << endl; // prints "http://doc.trolltech.com"
+cout << a2.value() << endl; // prints "http://qt.nokia.com/doc"
//! [8]
diff --git a/doc/src/snippets/qmake/comments.pro b/doc/src/snippets/qmake/comments.pro
index 189d271..390444b 100644
--- a/doc/src/snippets/qmake/comments.pro
+++ b/doc/src/snippets/qmake/comments.pro
@@ -5,6 +5,6 @@
#! [1]
# To include a literal hash character, use the $$LITERAL_HASH variable:
-urlPieces = http://doc.trolltech.com/4.0/qtextdocument.html pageCount
+urlPieces = http://qt.nokia.com/doc/4.0/qtextdocument.html pageCount
message($$join(urlPieces, $$LITERAL_HASH))
#! [1]