[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - dbaccess/source

Julien Nabet (via logerrit) logerrit at kemper.freedesktop.org
Sun Dec 13 20:43:33 UTC 2020


 dbaccess/source/ui/control/FieldDescControl.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 226a83f10cd6d0716002fcbf142d170d51bf309e
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Fri Dec 11 23:15:43 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Sun Dec 13 21:43:01 2020 +0100

    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/+/107625
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx
index f0d9b9ee4468..2e0813d5ff61 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()


More information about the Libreoffice-commits mailing list