summaryrefslogtreecommitdiff
path: root/examples/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml
diff options
context:
space:
mode:
authorKimmo Leppälä <kimmo.leppala@qt.io>2023-05-15 08:28:36 +0300
committerKimmo Leppälä <kimmo.leppala@qt.io>2023-05-16 20:27:36 +0300
commit117382f2615d1e16bfa437b1ccc388fb77c99bf2 (patch)
treef0d382751ed9d3aeb7b7aadc0dca168447cd8917 /examples/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml
parent3c0d43145df9b5e6c728bdea213e9d6f985b549d (diff)
downloadqtdoc-117382f2615d1e16bfa437b1ccc388fb77c99bf2.tar.gz
Remove PhotoViewer example
Fixes: QTBUG-113593 Change-Id: Idafd79a140067fac9c9f27440f4f43453e2e2ddf Pick-to: 6.5 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml')
-rw-r--r--examples/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml b/examples/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml
deleted file mode 100644
index ead9d920..00000000
--- a/examples/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-Image {
- id: container
- property bool on: false
-
- source: "images/busy.png"; visible: container.on
- NumberAnimation on rotation { running: container.on; from: 0; to: 360; loops: Animation.Infinite; duration: 1200 }
-}