summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/pingpong/assets/Dialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bluetooth/pingpong/assets/Dialog.qml')
-rw-r--r--examples/bluetooth/pingpong/assets/Dialog.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/bluetooth/pingpong/assets/Dialog.qml b/examples/bluetooth/pingpong/assets/Dialog.qml
deleted file mode 100644
index 02575036..00000000
--- a/examples/bluetooth/pingpong/assets/Dialog.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (C) 2014 BlackBerry Limited. All rights reserved.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick 2.0
-
-Rectangle {
- width: parent.width/2
- height: message.implicitHeight*2
- z: 50
- border.width: 2
- border.color: "#363636"
- radius: 10
-
- Text {
- id: message
- horizontalAlignment: Text.AlignHCenter
- verticalAlignment: Text.AlignVCenter
- anchors.fill: parent
- wrapMode: Text.WordWrap
- elide: Text.ElideMiddle
- text: pingPong.message
- color: "#363636"
- }
-}