diff options
author | Olivier De Cannière <[email protected]> | 2025-08-06 09:35:04 +0200 |
---|---|---|
committer | Olivier De Cannière <[email protected]> | 2025-08-18 10:06:10 +0200 |
commit | 8857aee03670925cce927a33e66466769a32054e (patch) | |
tree | ed25d9161deca228083d03289895e64b3e4afebd | |
parent | be7190c6565e995bd6877b47a400f37692137ee3 (diff) |
Examples: Fix unqualified access qmllint warning
Amends 64f8639f5088788cdbc7d078689f2af3d73aef67
Fixes: QTBUG-138589
Change-Id: Ic531ce1d5b87f052a383f7ed55ec17114723cda2
Reviewed-by: Fabian Kosmale <[email protected]>
-rw-r--r-- | examples/webenginequick/quicknanobrowser/BrowserWindow.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/webenginequick/quicknanobrowser/BrowserWindow.qml b/examples/webenginequick/quicknanobrowser/BrowserWindow.qml index 968456556..4373223fa 100644 --- a/examples/webenginequick/quicknanobrowser/BrowserWindow.qml +++ b/examples/webenginequick/quicknanobrowser/BrowserWindow.qml @@ -545,7 +545,7 @@ ApplicationWindow { tabBar.removeItem(tabBar.itemAt(index)); tabLayout.children[index].destroy(); } else { - lastTabClosing = true; + win.lastTabClosing = true; win.close(); } } |