[Libreoffice-commits] core.git: vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Tue Mar 10 15:24:50 UTC 2020
vcl/source/edit/vclmedit.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 3fb0d46b1ec39cb6a5deb8521f7a4e489c194841
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Tue Mar 10 14:18:52 2020 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Tue Mar 10 16:24:15 2020 +0100
Resolves: tdf#131248 a11y crash when closing SQL Edit Query
Change-Id: I39db7b352dd460f46092a054bfa89f5acdda54c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90259
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/source/edit/vclmedit.cxx b/vcl/source/edit/vclmedit.cxx
index d69b3a64ea81..fe768e83956b 100644
--- a/vcl/source/edit/vclmedit.cxx
+++ b/vcl/source/edit/vclmedit.cxx
@@ -1088,6 +1088,9 @@ void VclMultiLineEdit::SetReadOnly( bool bReadOnly )
bool VclMultiLineEdit::IsReadOnly() const
{
+ if (!pImpVclMEdit) // might be called from within the dtor, when pImpVclMEdit == NULL is a valid state
+ return true;
+
return pImpVclMEdit->IsReadOnly();
}
More information about the Libreoffice-commits
mailing list