diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-12-11 23:15:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-12-13 20:30:11 +0100 |
commit | 6bb353ae98f5eac1fab2523771f1f97e5707694d (patch) | |
tree | 659a1b137c0baa0bfdcad2f66a0108b9f5b13791 /dbaccess | |
parent | af0009ec5a60af83762e7df49e17e02f0f2be193 (diff) |
tdf#138834: fix crash in table creation wizard when clicking next
See bt here:
https://bugs.documentfoundation.org/attachment.cgi?id=168082
Change-Id: Icc89803bd89ce82d4699eef3cfe7892395d0634f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107610
Tested-by: Jenkins
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/control/FieldDescControl.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index 8f3854f3740d..525b5a580be3 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx @@ -78,7 +78,8 @@ OFieldDescControl::OFieldDescControl(weld::Container* pPage, OTableDesignHelpBar , m_nEditWidth(50) , pActFieldDescr(nullptr) { - m_pHelp->connect_focus_out(LINK(this, OFieldDescControl, HelpFocusOut)); + if (m_pHelp) + m_pHelp->connect_focus_out(LINK(this, OFieldDescControl, HelpFocusOut)); } OFieldDescControl::~OFieldDescControl() |