From 4914b23e7e91b184d69eb00a74ce1c463c5754a7 Mon Sep 17 00:00:00 2001 From: Cédric Bosdonnat Date: Fri, 13 Jan 2012 16:08:17 +0100 Subject: fdo#38515: Fixed crasher in dialog destructor --- sw/source/ui/index/cnttab.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sw/source/ui/index/cnttab.cxx b/sw/source/ui/index/cnttab.cxx index 414bc5f51888..b4fc42aa29e3 100644 --- a/sw/source/ui/index/cnttab.cxx +++ b/sw/source/ui/index/cnttab.cxx @@ -356,6 +356,9 @@ SwMultiTOXTabDialog::~SwMultiTOXTabDialog() { SW_MOD()->GetModuleConfig()->SetShowIndexPreview(aShowExampleCB.IsChecked()); + // fdo#38515 Avoid setting focus on deleted controls in the destructors + EnableInput( sal_False ); + for(sal_uInt16 i = 0; i < nTypeCount; i++) { delete pFormArr[i]; -- cgit