diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-14 21:27:40 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-15 10:00:02 +0100 |
commit | bbf9b65f91e8136fa1a2e17960944b8720f5d58e (patch) | |
tree | 774ea79739554f1f3395ee8f4187ad5907295d83 /sw/source/ui/dialog | |
parent | aeec817fe1205eba88089569ef26bff819d1fdac (diff) |
support case sensitive entry completion
Change-Id: Ibaf0962e3d150c67f951e1b20c0e72aacfc7ea78
Reviewed-on: https://gerrit.libreoffice.org/69284
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/ui/dialog')
-rw-r--r-- | sw/source/ui/dialog/uiregionsw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dialog/uiregionsw.cxx b/sw/source/ui/dialog/uiregionsw.cxx index 1d3eca06ec2d..b0e896c4a022 100644 --- a/sw/source/ui/dialog/uiregionsw.cxx +++ b/sw/source/ui/dialog/uiregionsw.cxx @@ -1618,7 +1618,7 @@ SwInsertSectionTabPage::SwInsertSectionTabPage(TabPageParent pParent, const SfxI m_xCurName->connect_changed( LINK( this, SwInsertSectionTabPage, NameEditHdl)); m_xDDECB->connect_toggled( LINK( this, SwInsertSectionTabPage, DDEHdl )); ChangeProtectHdl(*m_xProtectCB); -//TODO m_xSubRegionED->EnableAutocomplete( true, true ); + m_xSubRegionED->set_entry_completion(true, true); } SwInsertSectionTabPage::~SwInsertSectionTabPage() |