[Libreoffice-commits] core.git: sw/source
Oliver Specht
oliver.specht at cib.de
Wed Oct 28 23:45:54 PDT 2015
sw/source/uibase/app/swdll.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 4aab13f77e5dc218d067ca7efe3622f4ea780bf9
Author: Oliver Specht <oliver.specht at cib.de>
Date: Wed Oct 28 13:32:18 2015 +0100
tdf#93509: crash on storing auto correction config fixed
fix of tdf#86494 removed the pAutoCorrect which is required to store the config
committing the config before fixes the crash
Change-Id: If049d5ad1e62711d4ec66ec6cca15940f7edba90
Reviewed-on: https://gerrit.libreoffice.org/19640
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Oliver Specht <oliver.specht at cib.de>
diff --git a/sw/source/uibase/app/swdll.cxx b/sw/source/uibase/app/swdll.cxx
index cff230c..0a33c88 100644
--- a/sw/source/uibase/app/swdll.cxx
+++ b/sw/source/uibase/app/swdll.cxx
@@ -156,6 +156,7 @@ SwDLL::~SwDLL()
{
// fdo#86494 SwAutoCorrect must be deleted before _FinitCore
SvxAutoCorrCfg& rACfg = SvxAutoCorrCfg::Get();
+ rACfg.Commit();
rACfg.SetAutoCorrect(0); // delete SwAutoCorrect before exit handlers
}
More information about the Libreoffice-commits
mailing list