summaryrefslogtreecommitdiff
path: root/vcl/source/app/salvtables.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app/salvtables.cxx')
-rw-r--r--vcl/source/app/salvtables.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 90481eaf0c7e..a5a8dc8c1592 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -5590,14 +5590,6 @@ void SalInstanceWidget::help_hierarchy_foreach(const std::function<bool(const OS
vcl::Window* pParent = m_xWidget;
while ((pParent = pParent->GetParent()))
{
- if (m_pBuilder && pParent->IsDialog())
- {
- // tdf#122355 before trying dialog help, check to see if there is a notebook
- // called tabcontrol, and try the help for the current page of that first
- OString sPageHelpId(m_pBuilder->get_current_page_help_id());
- if (!sPageHelpId.isEmpty() && func(sPageHelpId))
- return;
- }
if (func(pParent->GetHelpId()))
return;
}