diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-14 13:32:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-15 18:15:18 +0200 |
commit | 1a253362f6d1e1909913dce298630c92d431e41e (patch) | |
tree | f97468cd564328fffab6870a82a7326bddf70809 /include | |
parent | c7dfec21b44b23c4e52b938721f356f75046f37b (diff) |
speed up startup time
by avoid conversion of static locale data from sal_Unicode to OUString
data - we can declare the data as OUStringConstExpr arrays and then
no conversion is necessary.
Here we trigger a problem - EditDLL has static data that tends
to get torn down __after__ the i18npool shared library has been
removed from memory, which means it tries to access OUStringLiteral
objects that no longer exists.
So use vcl::DeleteOnExit to explicitly clear that on application
shutdown.
Change-Id: Ie4bfcef7eb4656316ea825474ac42f85844d1dcc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153060
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/eerdll.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/editeng/eerdll.hxx b/include/editeng/eerdll.hxx index b77d6a0d4703..017ff72972a4 100644 --- a/include/editeng/eerdll.hxx +++ b/include/editeng/eerdll.hxx @@ -24,6 +24,7 @@ #include <rtl/ustring.hxx> #include <unotools/resmgr.hxx> #include <memory> +#include <mutex> class GlobalEditData; namespace editeng |