diff --git a/src/qml/doc/snippets/qml/imports/merged-named-imports.qml b/src/qml/doc/snippets/qml/imports/merged-named-imports.qml
index c95d9e66eb54045ce5b443b785913d5b01fc4bce..c37ac5e48dc476daf67fb12c880a118bae0a9b64 100644
--- a/src/qml/doc/snippets/qml/imports/merged-named-imports.qml
+++ b/src/qml/doc/snippets/qml/imports/merged-named-imports.qml
@@ -39,8 +39,8 @@
 ****************************************************************************/
 
 //! [imports]
-import QtQuick 2.0 as Nokia
-import Ovi 1.0 as Nokia
+import QtQuick 2.0 as Project
+import QtMultimedia 5.0 as Project
 //! [imports]
 
 Item {
diff --git a/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc b/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc
index c195c8724f505e4197e7d6bf7ea4fad6291b6d7a..7d2d662e4e95530c242faec43a8c06d4cc5efc27 100644
--- a/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc
+++ b/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc
@@ -241,7 +241,7 @@ property is only invoked when the property is reassigned to a different object v
     \brief a resource locator.
 
     The \c url type refers to a resource locator (like a file name, for example). It can be either
-    absolute, e.g. "http://qt.nokia.com", or relative, e.g.  "pics/logo.png". A relative URL is
+    absolute, e.g. "http://qt-project.org", or relative, e.g.  "pics/logo.png". A relative URL is
     resolved relative to the URL of the containing component.
 
     For example, the following assigns a valid URL to the \l {Image::source}
diff --git a/src/quick/doc/snippets/qml/text/onLinkActivated.qml b/src/quick/doc/snippets/qml/text/onLinkActivated.qml
index 9bb4d3a0bb45670e592c29622a145f3b062a62e8..7a44dcc55782e233afda273a9ea5fa2e71133c60 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]
diff --git a/src/quick/doc/src/appdevguide/debugging.qdoc b/src/quick/doc/src/appdevguide/debugging.qdoc
index 94ce13459c213515f61fb7dafee2abc52b10771f..f1869972e461c727e35096adf7f1ab3306ed3e78 100644
--- a/src/quick/doc/src/appdevguide/debugging.qdoc
+++ b/src/quick/doc/src/appdevguide/debugging.qdoc
@@ -45,7 +45,7 @@ function f(a, b) {
 \endcode
 
 The output is generated using the qDebug, qWarning, qCritical methods in C++
-(see also http://doc.qt.nokia.com/latest/debug.html#warning-and-debugging-messages).
+(see also \l {Debugging Techniques}).
 
 Setting the environment variable QML_CONSOLE_EXTENDED also prints the source
 code location of the call.
@@ -150,7 +150,7 @@ QQmlImportDatabase::resolveType "Rectangle" = "QDeclarativeRectangle"
 
 \section1 Debugging with Qt Creator
 
-\l{http://qt.nokia.com/products/developer-tools}{Qt Creator} provides built-in
+\l{http://qt-project.org/doc/qtcreator}{Qt Creator} provides built-in
 support for QML debugging. QML projects and standalone C++ applications that
 utilize QML can be debugged on desktops as well as on remote devices.
 For more information, see the Qt Creator Manual.
diff --git a/src/quick/items/qquicktext.cpp b/src/quick/items/qquicktext.cpp
index 9a90b408c377c6a374d693248b889e1ee43a89c3..e83a2cb08bb8283d21870f2a1595a95c2ac2d076 100644
--- a/src/quick/items/qquicktext.cpp
+++ b/src/quick/items/qquicktext.cpp
@@ -1334,10 +1334,10 @@ QQuickText::~QQuickText()
     \snippet qml/text/onLinkActivated.qml 0
 
     The example code will display the text
-    "The main website is at \l{http://qt.nokia.com}{Nokia Qt DF}."
+    "See the \l{http://qt-project.org}{Qt Project website}."
 
     Clicking on the highlighted link will output
-    \tt{http://qt.nokia.com link activated} to the console.
+    \tt{http://qt-project.org link activated} to the console.
 */
 
 /*!
diff --git a/tests/testapplications/text/textedit.qml b/tests/testapplications/text/textedit.qml
index e0d7dbdde45ba72b13a15b08a427a9fb679efac9..6546abfe91141cc4d349f9e3d6713b4604835927 100644
--- a/tests/testapplications/text/textedit.qml
+++ b/tests/testapplications/text/textedit.qml
@@ -144,7 +144,7 @@ Rectangle {
                     "and a language runtime. "+
                     "A collection of C++ APIs is used to integrate these high level features with classic Qt applications."});
                     textmodel.append({ "name": "Links",
-                    "value": "This is a link - <a href=\"http://doc.qt.nokia.com\">Qt Docs</a>"});
+                    "value": "This is a link - <a href=\"http://qt-project.org/doc\">Qt Docs</a>"});
                 }
             }
             ControlView {