diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-11-18 20:24:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-19 07:33:34 +0100 |
commit | f7a8c3cc4dc9a316b39e8680a2af330d8f8ba296 (patch) | |
tree | 89eeb3f9c2da4c5f459d4e778ac6c54625a99548 /unotools/source/ucbhelper | |
parent | 4d3e4c1cf3f117b8abd8dd67843864bb4c2e5a2f (diff) |
rtl::Static->thread-safe static in unotools
Change-Id: I2a8c9ca7c45a8e20f3d114722a0677b856a13d8c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125495
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools/source/ucbhelper')
-rw-r--r-- | unotools/source/ucbhelper/tempfile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index 22ce434b0e3e..02770fda8744 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -24,7 +24,7 @@ #include <unotools/tempfile.hxx> #include <rtl/ustring.hxx> -#include <rtl/instance.hxx> +#include <osl/mutex.hxx> #include <osl/detail/file.h> #include <osl/file.hxx> #include <tools/time.hxx> |