aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2023-10-10 08:51:41 +0200
committerChristian Stenger <christian.stenger@qt.io>2023-10-11 06:57:18 +0000
commitb63c0670f88ff1189cd7030b1b75090e481875ca (patch)
treec641350e8f9b1c53e1731476af4e248a60c746e2 /src/shared
parentc929b71acdfc4285dee5333b29f76188f9225165 (diff)
SquishTests: Fix finding help contents
Fixes suite_HELP. Change-Id: I57c0b82a758d3c91f29c4c48a8c33672f71afde2 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/help/contentwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/help/contentwindow.cpp b/src/shared/help/contentwindow.cpp
index 52c27a6018..216a63b3ef 100644
--- a/src/shared/help/contentwindow.cpp
+++ b/src/shared/help/contentwindow.cpp
@@ -27,6 +27,7 @@ ContentWindow::ContentWindow()
{
m_contentModel = (&LocalHelpManager::helpEngine())->contentModel();
m_contentWidget = new Utils::NavigationTreeView;
+ m_contentWidget->setObjectName("helpContentWidget"); // used by Squish
m_contentWidget->setModel(m_contentModel);
m_contentWidget->setActivationMode(Utils::SingleClickActivation);
m_contentWidget->installEventFilter(this);