aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2025-09-24 19:26:24 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2025-09-26 12:03:57 +0200
commit75c5dfb7e2841fb1c5f53daa891263e5a211f517 (patch)
tree63f1a88fca351f07fe67209cead169b8f0d2c248 /src/quick/doc/snippets
parenteee7404be0c9a5007bddfaaa1e1c3a627e76f4ce (diff)
Replace nokia.com logo URLs with something that works for now
If only the qt.io website could be relied upon to have a Qt logo in the same path for eternity... Pick-to: 6.8 6.10 Change-Id: Ie221bd85152af42bdf36655083932ca8341c7d2a Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/quick/doc/snippets')
-rw-r--r--src/quick/doc/snippets/qml/qml-extending-types/properties/alias/application.qml2
-rw-r--r--src/quick/doc/snippets/qml/qml-extending-types/properties/application.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/doc/snippets/qml/qml-extending-types/properties/alias/application.qml b/src/quick/doc/snippets/qml/qml-extending-types/properties/alias/application.qml
index 697a07062d..506b912cbb 100644
--- a/src/quick/doc/snippets/qml/qml-extending-types/properties/alias/application.qml
+++ b/src/quick/doc/snippets/qml/qml-extending-types/properties/alias/application.qml
@@ -7,7 +7,7 @@ import QtQuick
ImageViewer {
id: viewer
- currentImage.source: "http://qt.nokia.com/logo.png"
+ currentImage.source: "https://code.qt.io/cgit/qt/qtbase.git/plain/src/widgets/dialogs/images/qtlogo-64.png"
currentImage.width: width
currentImage.height: height
currentImage.fillMode: Image.Tile
diff --git a/src/quick/doc/snippets/qml/qml-extending-types/properties/application.qml b/src/quick/doc/snippets/qml/qml-extending-types/properties/application.qml
index 4cda04660e..0cfc4478b6 100644
--- a/src/quick/doc/snippets/qml/qml-extending-types/properties/application.qml
+++ b/src/quick/doc/snippets/qml/qml-extending-types/properties/application.qml
@@ -6,7 +6,7 @@ import QtQuick
ImageViewer {
id: viewer
- currentImage: "http://qt.nokia.com/logo.png"
+ currentImage: "https://code.qt.io/cgit/qt/qtbase.git/plain/src/widgets/dialogs/images/qtlogo-64.png"
Text { text: viewer.currentImage }
}