summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2018-04-05 21:03:11 +0200
committerMarco Cecchetti <mrcekets@gmail.com>2018-04-06 15:03:01 +0200
commitd8a23d1c5b1366a5f7f95f8edc0b2fd6716296e4 (patch)
treeb52116cb273bcffba4a6a0891808fb6a91762a1d
parent8674c0999bea80c0234c1e3bae1bc12f53b27c45 (diff)
tdf#116628: Fix expanding the entries in Help's Contents tab.
Change-Id: I50627ca577bf89810c716bf9e1db9ae74cec58d1 Reviewed-on: https://gerrit.libreoffice.org/52474 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
-rw-r--r--sfx2/source/appl/newhelp.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx
index 190caba014b0..feab1d510b71 100644
--- a/sfx2/source/appl/newhelp.cxx
+++ b/sfx2/source/appl/newhelp.cxx
@@ -1691,7 +1691,8 @@ void SfxHelpIndexWindow_Impl::SetDoubleClickHdl( const Link<Control*,bool>& rLin
IMPL_LINK(SfxHelpIndexWindow_Impl, ContentTabPageDoubleClickHdl, SvTreeListBox*, p, bool)
{
- return aPageDoubleClickLink.Call(p);
+ aPageDoubleClickLink.Call(p);
+ return true;
}
IMPL_LINK(SfxHelpIndexWindow_Impl, TabPageDoubleClickHdl, ListBox&, r, void)