diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2018-09-20 10:24:08 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2018-09-20 13:46:09 +0200 |
commit | b613eeeb566adc8955248c31b94a7ed32ebba4d1 (patch) | |
tree | bad6c4717bf02b0557ad2c2c289c1f2ac30a4bd5 /sw/source/uibase/docvw | |
parent | f19caba47949ebe918f3b76e49a398192b2da365 (diff) |
tdf#119356 add input lists to tooltip handling
The SwFieldIds::Dropdown type simply wasn't ever handled.
Change-Id: I0d8a11548d4347bf5e97e31fd2a4bb58acbe7b51
Reviewed-on: https://gerrit.libreoffice.org/60797
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'sw/source/uibase/docvw')
-rw-r--r-- | sw/source/uibase/docvw/edtwin2.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/uibase/docvw/edtwin2.cxx b/sw/source/uibase/docvw/edtwin2.cxx index e9fa1aedd540..fe3f1021b4ef 100644 --- a/sw/source/uibase/docvw/edtwin2.cxx +++ b/sw/source/uibase/docvw/edtwin2.cxx @@ -316,6 +316,7 @@ void SwEditWin::RequestHelp(const HelpEvent &rEvt) case SwFieldIds::Input: // BubbleHelp, because the suggestion could be quite long bBalloon = true; SAL_FALLTHROUGH; + case SwFieldIds::Dropdown: case SwFieldIds::JumpEdit: sText = pField->GetPar2(); break; |