diff options
Diffstat (limited to 'svx/source/table/cell.cxx')
-rw-r--r-- | svx/source/table/cell.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx index 2e2f5fad140f..27549aaa4101 100644 --- a/svx/source/table/cell.cxx +++ b/svx/source/table/cell.cxx @@ -440,8 +440,13 @@ void Cell::dispose() mxTable.clear(); } - mpProperties.reset(); - SetOutlinerParaObject( nullptr ); + // tdf#118199 avoid double dispose, detect by using mpProperties + // as indicator. Only use SetOutlinerParaObject once + if( mpProperties ) + { + mpProperties.reset(); + SetOutlinerParaObject( nullptr ); + } } void Cell::merge( sal_Int32 nColumnSpan, sal_Int32 nRowSpan ) |