summaryrefslogtreecommitdiff
path: root/examples/bluetooth/pingpong/assets/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bluetooth/pingpong/assets/main.qml')
-rw-r--r--examples/bluetooth/pingpong/assets/main.qml26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/bluetooth/pingpong/assets/main.qml b/examples/bluetooth/pingpong/assets/main.qml
deleted file mode 100644
index 77cf723b..00000000
--- a/examples/bluetooth/pingpong/assets/main.qml
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (C) 2014 BlackBerry Limited. All rights reserved.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick 2.1
-import QtQuick.Window 2.1
-
-Window {
- id: menulist
- width: 600
- height: 600
- visibility: (Qt.platform.os === "android" || Qt.platform.os === "ios") ? Window.FullScreen : Window.Windowed
- visible: true
-
- Dialog {
- id: info
- anchors.centerIn: parent
- visible: false
- }
-
- Component.onCompleted: pageLoader.source = "Menu.qml"
-
- Loader {
- id: pageLoader
- anchors.fill: parent
- }
-}