diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-14 08:22:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-14 11:04:51 +0200 |
commit | d27a88f4fed168068bce5fc36d0bf62301641e25 (patch) | |
tree | 36cd83ae4cb3cd47334e20689296d6daf035c92b /vcl/source/app/help.cxx | |
parent | 67c0fe349aaec504144fe55ce282dbc92aa01b62 (diff) |
dubious to enable/disable help button based on IsContextHelpEnabled
in just the SingleTabController, which is a specific subset of all
dialogs, the case of a dialog that hosts a page typically seen in a
multi-table dialog. Why should such a dialog have no help, while
its sibling containing the same page alongside others would have help,
or vice-versa.
Change-Id: I3f54c0088e30a396e83e990510ebe7f1f3bc7bda
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171848
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'vcl/source/app/help.cxx')
-rw-r--r-- | vcl/source/app/help.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx index de5ef8bb0c15..de54818d05a0 100644 --- a/vcl/source/app/help.cxx +++ b/vcl/source/app/help.cxx @@ -79,11 +79,6 @@ void Help::DisableContextHelp() ImplGetSVHelpData().mbContextHelp = false; } -bool Help::IsContextHelpEnabled() -{ - return ImplGetSVHelpData().mbContextHelp; -} - void Help::EnableExtHelp() { ImplGetSVHelpData().mbExtHelp = true; |