summaryrefslogtreecommitdiff
path: root/examples/webenginequick/customdialogs/MessageRectangle.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webenginequick/customdialogs/MessageRectangle.qml')
-rw-r--r--examples/webenginequick/customdialogs/MessageRectangle.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/webenginequick/customdialogs/MessageRectangle.qml b/examples/webenginequick/customdialogs/MessageRectangle.qml
deleted file mode 100644
index 09a202cf3..000000000
--- a/examples/webenginequick/customdialogs/MessageRectangle.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-Rectangle {
- property alias text: messageText.text
- width: parent.width
- height: 30
- visible: false
- color: "#80c342"
- Text {
- id: messageText
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.verticalCenter: parent.verticalCenter
- font.pointSize: 12
- }
-}