summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernd Weimer <bernd.weimer@qt.io>2024-01-05 13:45:48 +0100
committerBernd Weimer <bernd.weimer@qt.io>2024-01-15 15:46:20 +0100
commitea0d02001674d50d5bafa905016dba4cb83f4219 (patch)
treee1ffb202144e510495d819451f0c24aa298b9f76 /tests
parent7fcd19a58e2745a9f2af3efddfff1e182208ace2 (diff)
Make attached ApplicationManagerWindow available
It doesn't work with foreign types (yet). Change-Id: Ib29fb23d88feabbc38525045bcc498799d227613 Pick-to: 6.7 Reviewed-by: Robert Griebl <robert.griebl@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/simple/apps/tld.test.simple1/app1.qml11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/auto/qml/simple/apps/tld.test.simple1/app1.qml b/tests/auto/qml/simple/apps/tld.test.simple1/app1.qml
index 99f398d6..1024daaa 100644
--- a/tests/auto/qml/simple/apps/tld.test.simple1/app1.qml
+++ b/tests/auto/qml/simple/apps/tld.test.simple1/app1.qml
@@ -3,13 +3,12 @@
// Copyright (C) 2018 Pelagicore AG
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
-import QtQuick 2.4
-import QtApplicationManager.Application 2.0
+import QtQuick
+import QtApplicationManager.Application
ApplicationManagerWindow {
- id: root
-
Rectangle {
+ id: rect
anchors.centerIn: parent
width: 180; height: 180; radius: width/4
color: "red"
@@ -18,7 +17,9 @@ ApplicationManagerWindow {
Connections {
target: ApplicationInterface
function onQuit() {
- target.acknowledgeQuit();
+ // Casual check for attached ApplicationManagerWindow type
+ if (rect.ApplicationManagerWindow.window.visible)
+ target.acknowledgeQuit();
}
}
}