aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/objectlistmodel/view.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/objectlistmodel/view.qml')
-rw-r--r--examples/declarative/objectlistmodel/view.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/declarative/objectlistmodel/view.qml b/examples/declarative/objectlistmodel/view.qml
deleted file mode 100644
index b7cf68a9b..000000000
--- a/examples/declarative/objectlistmodel/view.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-ListView {
- width: 100; height: 100
-
- delegate: Rectangle {
- color: model.modelData.color
- height: 25
- width: 100
- Text { text: model.modelData.name }
- }
-}