summaryrefslogtreecommitdiff
path: root/cui/source/customize/cfg.cxx
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2018-03-19 21:19:47 +0300
committerKatarina Behrens <Katarina.Behrens@cib.de>2018-03-20 12:41:15 +0100
commit8567047218c2f6e01b6525e0996607ad7f928a57 (patch)
tree14466cdade63f4c46d9efd9a91f9a13fd77822e5 /cui/source/customize/cfg.cxx
parent6e5a95c34c7d6817389c6d9aeb5206d821963f05 (diff)
tdf#116494: Don't ask parent if no help text
And add/use an IsHelpInstalled() method to SfxHelp. Change-Id: Ib87573067d6c44fa5adb22253c1a51a78580acf6 Reviewed-on: https://gerrit.libreoffice.org/51584 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'cui/source/customize/cfg.cxx')
-rw-r--r--cui/source/customize/cfg.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index 078a06c16c77..0d3c9fbe69bc 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -34,6 +34,7 @@
#include <vcl/virdev.hxx>
#include <vcl/settings.hxx>
+#include <sfx2/sfxhelp.hxx>
#include <sfx2/app.hxx>
#include <sfx2/sfxdlg.hxx>
#include <sfx2/viewfrm.hxx>
@@ -1769,19 +1770,20 @@ IMPL_LINK_NOARG( SvxConfigPage, SelectFunctionHdl, SvTreeListBox *, void )
m_pAddCommandButton->Enable();
m_pRemoveCommandButton->Enable();
- m_pDescriptionField->SetText( m_pFunctions->GetHelpText() );
+ m_pDescriptionField->SetText( m_pFunctions->GetHelpText( false ) );
}
else
{
+
m_pAddCommandButton->Disable();
m_pRemoveCommandButton->Disable();
m_pDescriptionField->SetText("");
}
- // Disable the description field and its label if there is no help text to display
+ // Disable the description field and its label if the local help is not installed
// And inform the user via tooltips
- if ( m_pDescriptionField->GetText().isEmpty() )
+ if ( !SfxHelp::IsHelpInstalled() )
{
m_pDescriptionField->Disable();
m_pDescriptionFieldLb->Disable();