summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiang Qi <[email protected]>2025-06-23 11:26:46 +0200
committerLiang Qi <[email protected]>2025-06-23 23:26:59 +0200
commit419eaf13eafccc1457c0bc516f08e6ff68b37e55 (patch)
treea5120de68bda15af9b7e408fc71eaedff63b4c6e
parentbfd052b55d339e81da305917c3d9fe7e142c50e1 (diff)
tests: fix a typo in tst_QWindow::touchInterruptedByPopup()HEADdev
Pick-to: 6.10 6.9 6.8 Change-Id: I6d846c7bfdaa6034994057725dd65c7ab75c9273 Reviewed-by: Shawn Rutledge <[email protected]>
-rw-r--r--tests/auto/gui/kernel/qwindow/tst_qwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/gui/kernel/qwindow/tst_qwindow.cpp b/tests/auto/gui/kernel/qwindow/tst_qwindow.cpp
index ada60860e99..39051276371 100644
--- a/tests/auto/gui/kernel/qwindow/tst_qwindow.cpp
+++ b/tests/auto/gui/kernel/qwindow/tst_qwindow.cpp
@@ -1626,7 +1626,7 @@ void tst_QWindow::touchInterruptedByPopup()
// Launch a popup window
InputTestWindow popup;
- window.setObjectName("popup");
+ popup.setObjectName("popup");
popup.setFlags(Qt::Popup);
popup.setModality(Qt::WindowModal);
popup.resize(m_testWindowSize / 2);