summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2009-08-12 05:55:39 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-08-12 05:55:39 (GMT)
commite6b6dfb42ea4b649b52df9d17628bfdf3f9d29e4 (patch)
tree108c61f23858acf7a79b61bfa45752c0d0f0ebb5 /doc/src/snippets/code
parent26a9bcd7aa2be43329d2c89301612de20ec7a838 (diff)
downloadQt-e6b6dfb42ea4b649b52df9d17628bfdf3f9d29e4.zip
Qt-e6b6dfb42ea4b649b52df9d17628bfdf3f9d29e4.tar.gz
Qt-e6b6dfb42ea4b649b52df9d17628bfdf3f9d29e4.tar.bz2
Update references to online documentation.
Reviewed-by: Trust Me
Diffstat (limited to 'doc/src/snippets/code')
-rw-r--r--doc/src/snippets/code/src_xml_dom_qdom.cpp4
1 files changed, 2 insertions, 2 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]