summaryrefslogtreecommitdiffstats
path: root/examples/webenginequick/customdialogs/forms/ColorCell.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webenginequick/customdialogs/forms/ColorCell.qml')
-rw-r--r--examples/webenginequick/customdialogs/forms/ColorCell.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/webenginequick/customdialogs/forms/ColorCell.qml b/examples/webenginequick/customdialogs/forms/ColorCell.qml
deleted file mode 100644
index 57151780c..000000000
--- a/examples/webenginequick/customdialogs/forms/ColorCell.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-Rectangle {
- id: rectangle
- width: 50
- height: 50
- signal clicked()
- MouseArea {
- id: mouseArea
- anchors.fill: parent
- onClicked: rectangle.clicked()
- }
-}