diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-13 12:38:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-13 12:41:00 +0100 |
commit | 7de992bcc66c973bb6b247184cac38f01cd1104a (patch) | |
tree | 19ca3604311006694f4186d197f71572aa9e4d26 | |
parent | 5af8cf2e94a07821e9058ed99997541b80dd6693 (diff) |
fix a11y crash seen on close of tdf#92573
its not the reported crash, which has "gone away" which might
be a duplicate of tdf#90502
the switch only handled RES_TITLE_CHANGED and RES_DESCRIPTION_CHANGED so if its
anything else, e.g. OBJ_DYING, then don't attempt GetNoTextNode
Change-Id: I642beb66613481cbc7ee18647f0204a67d670a84
-rw-r--r-- | sw/source/core/access/accnotextframe.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/core/access/accnotextframe.cxx b/sw/source/core/access/accnotextframe.cxx index 7647b351f473..58fb53f2c177 100644 --- a/sw/source/core/access/accnotextframe.cxx +++ b/sw/source/core/access/accnotextframe.cxx @@ -102,6 +102,9 @@ void SwAccessibleNoTextFrame::Modify( const SfxPoolItem* pOld, const SfxPoolItem return; // probably was deleted - avoid doing anything } + if (nWhich != RES_TITLE_CHANGED || nWhich != RES_DESCRIPTION_CHANGED) + return; + const SwNoTextNode *pNd = GetNoTextNode(); OSL_ENSURE( pNd == aDepend.GetRegisteredIn(), "invalid frame" ); switch( nWhich ) |