svx/source/accessibility/AccessibleShape.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a3c3f21a742f7c7f587bd63ee2617a150bb39b96 Author: Serge Krot <[email protected]> AuthorDate: Wed Jan 8 21:18:20 2020 +0100 Commit: Thorsten Behrens <[email protected]> CommitDate: Wed Jan 8 22:26:24 2020 +0100 tdf#129887: fix crash during scrolling down document regression from tdf#129708 Change-Id: I6c5d7eb90030234e899ab8ce5b3adec33e03962a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86454 Reviewed-by: Julien Nabet <[email protected]> Tested-by: Thorsten Behrens <[email protected]> diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx index 1c0f1e83880e..e96f6501069c 100644 --- a/svx/source/accessibility/AccessibleShape.cxx +++ b/svx/source/accessibility/AccessibleShape.cxx @@ -159,7 +159,7 @@ void AccessibleShape::Init() if( pSdrObject ) { SdrTextObj* pTextObj = dynamic_cast<SdrTextObj*>( pSdrObject ); - const bool hasOutlinerParaObject = pTextObj->CanCreateEditOutlinerParaObject() || pSdrObject->GetOutlinerParaObject() != nullptr; + const bool hasOutlinerParaObject = (pTextObj && pTextObj->CanCreateEditOutlinerParaObject()) || (pSdrObject->GetOutlinerParaObject() != nullptr); // create AccessibleTextHelper to handle this shape's text if( !hasOutlinerParaObject ) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
