summaryrefslogtreecommitdiff
path: root/src/quick/doc/snippets/qml/text
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-04-24 22:20:30 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-24 19:26:37 +0200
commit20d33b96acf95fc1e162c4e8ed00d4b0b20806d9 (patch)
tree67f6cb407ba1ed4fc18926cd843864a985f51226 /src/quick/doc/snippets/qml/text
parent73d8bcda7d1b4317f38d8a2844294601325915aa (diff)
downloadqtdeclarative-20d33b96acf95fc1e162c4e8ed00d4b0b20806d9.tar.gz
Doc: Replace some references to Nokia
Link to internal QDoc pages, or to qt-project.org Change-Id: I5d9adae711213873ab57ccfc5bb2d8f74cf5689b Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/doc/snippets/qml/text')
-rw-r--r--src/quick/doc/snippets/qml/text/onLinkActivated.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/doc/snippets/qml/text/onLinkActivated.qml b/src/quick/doc/snippets/qml/text/onLinkActivated.qml
index 9bb4d3a0bb..7a44dcc557 100644
--- a/src/quick/doc/snippets/qml/text/onLinkActivated.qml
+++ b/src/quick/doc/snippets/qml/text/onLinkActivated.qml
@@ -45,7 +45,7 @@ Rectangle {
//![0]
Text {
textFormat: Text.RichText
- text: "The main website is at <a href=\"http://qt.nokia.com\">Nokia Qt DF</a>."
+ text: "See the <a href=\"http://qt-project.org\">Qt Project website</a>."
onLinkActivated: console.log(link + " link activated")
}
//![0]