From aa81a086bd3dcd7d6b830951619f310bd0aff30c Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 28 May 2018 14:41:20 +0300 Subject: tdf#117850: Just call _Exit() in our applicationWillTerminate: Sure, it is just a workaround, but a very effective workaround. Change-Id: Id0daff048a27dae5cf8fb5e0e949c5b21e03fc86 Reviewed-on: https://gerrit.libreoffice.org/54924 Tested-by: Jenkins Reviewed-by: Tor Lillqvist --- vcl/osx/vclnsapp.mm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vcl/osx/vclnsapp.mm') diff --git a/vcl/osx/vclnsapp.mm b/vcl/osx/vclnsapp.mm index 882ee3fb79a7..a3e5396d902e 100644 --- a/vcl/osx/vclnsapp.mm +++ b/vcl/osx/vclnsapp.mm @@ -22,6 +22,8 @@ #include +#include + #include #include #include @@ -308,6 +310,7 @@ SAL_WNODEPRECATED_DECLARATIONS_POP { (void)aNotification; sal_detail_deinitialize(); + _Exit(0); } -(NSApplicationTerminateReply)applicationShouldTerminate: (NSApplication *) app -- cgit