diff options
author | David Tardon <dtardon@redhat.com> | 2016-11-03 09:54:29 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-11-03 09:55:36 +0100 |
commit | 4a83464f718ba8534a738178670077d5636ad051 (patch) | |
tree | fb103fd209f58237dd5ce8c3221eceec27f180e6 /sc | |
parent | a90bf85ae6bf2ef3b9d79bfe8e76ce052b17ce35 (diff) |
tdf#103633 avoid segfault in a11y
This partially reverts commit 8e8a88ec1ad02c153ae3c7653edc81716dc91b7a
"loplugin:unusedfields".
Change-Id: Id95a46374ed2b35e05dc32a8759e5db01829f050
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/Accessibility/AccessibleDocument.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleDocument.cxx b/sc/source/ui/Accessibility/AccessibleDocument.cxx index f6bcdddd0df5..8fdbd07e91aa 100644 --- a/sc/source/ui/Accessibility/AccessibleDocument.cxx +++ b/sc/source/ui/Accessibility/AccessibleDocument.cxx @@ -453,7 +453,7 @@ bool ScChildrenShapes::ReplaceChild (::accessibility::AccessibleShape* pCurrentC { // create the new child rtl::Reference< ::accessibility::AccessibleShape > pReplacement(::accessibility::ShapeTypeHandler::Instance().CreateAccessibleObject ( - ::accessibility::AccessibleShapeInfo ( _rxShape, pCurrentChild->getAccessibleParent() ), + ::accessibility::AccessibleShapeInfo ( _rxShape, pCurrentChild->getAccessibleParent(), this ), _rShapeTreeInfo )); if ( pReplacement.is() ) @@ -558,7 +558,7 @@ uno::Reference< XAccessible > ScChildrenShapes::Get(const ScAccessibleShapeData* if (!pData->pAccShape.is()) { ::accessibility::ShapeTypeHandler& rShapeHandler = ::accessibility::ShapeTypeHandler::Instance(); - ::accessibility::AccessibleShapeInfo aShapeInfo(pData->xShape, mpAccessibleDocument); + ::accessibility::AccessibleShapeInfo aShapeInfo(pData->xShape, mpAccessibleDocument, const_cast<ScChildrenShapes*>(this)); pData->pAccShape = rShapeHandler.CreateAccessibleObject( aShapeInfo, maShapeTreeInfo); if (pData->pAccShape.is()) |