[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - 2 commits - cui/source sfx2/source
Jan Holesovsky
kendy at collabora.com
Fri Apr 6 13:03:23 UTC 2018
cui/source/options/optaboutconfig.cxx | 2 +-
sfx2/source/appl/newhelp.cxx | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
New commits:
commit 3d9f4e8f31ce7b49db83d868efec72840b648ab5
Author: Jan Holesovsky <kendy at collabora.com>
Date: Tue Apr 3 10:27:16 2018 +0200
tdf#116733: Fix expanding in the entries in "Open expert configuration".
The DoubleClickHdl()'s return value does not mean "was handled", but actually
"is there anything more to be done".
Change-Id: Ideeee31db648829546a713148124e3d366941b9a
Reviewed-on: https://gerrit.libreoffice.org/52292
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Jan Holesovsky <kendy at collabora.com>
(cherry picked from commit 3af6be55ae1dabb1b72cbb4c57cca33c28b347f8)
Reviewed-on: https://gerrit.libreoffice.org/52304
Reviewed-by: Marco Cecchetti <mrcekets at gmail.com>
Tested-by: Marco Cecchetti <mrcekets at gmail.com>
diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx
index b848e5da2615..86eb18df6eed 100644
--- a/cui/source/options/optaboutconfig.cxx
+++ b/cui/source/options/optaboutconfig.cxx
@@ -570,7 +570,7 @@ IMPL_LINK_NOARG( CuiAboutConfigTabPage, ResetBtnHdl_Impl, Button*, void )
IMPL_LINK_NOARG( CuiAboutConfigTabPage, DoubleClickHdl_Impl, SvTreeListBox*, bool )
{
StandardHdl_Impl(nullptr);
- return false;
+ return true;
}
IMPL_LINK_NOARG( CuiAboutConfigTabPage, StandardHdl_Impl, Button*, void )
commit d8a23d1c5b1366a5f7f95f8edc0b2fd6716296e4
Author: Jan Holesovsky <kendy at collabora.com>
Date: Thu Apr 5 21:03:11 2018 +0200
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 at gmail.com>
Tested-by: Marco Cecchetti <mrcekets at gmail.com>
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)
More information about the Libreoffice-commits
mailing list