summaryrefslogtreecommitdiff
path: root/include/unotools/configvaluecontainer.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-02-21 09:29:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-02-21 11:02:47 +0000
commiteb11a07c4891412b48de00105d13d18241916506 (patch)
treeab01e8d0f70ebde2d9d8108cc7a288a30751b07a /include/unotools/configvaluecontainer.hxx
parentc2c22a8ca6e04779c4daada73003b03c963b4cfd (diff)
osl::Mutex->std::mutex in FmSearchConfigItem
Change-Id: Ic7d805f05f906a1f61ad958d33de0102d6835a36 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147380 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/unotools/configvaluecontainer.hxx')
-rw-r--r--include/unotools/configvaluecontainer.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unotools/configvaluecontainer.hxx b/include/unotools/configvaluecontainer.hxx
index c4447fca28f4..a123dba58867 100644
--- a/include/unotools/configvaluecontainer.hxx
+++ b/include/unotools/configvaluecontainer.hxx
@@ -23,6 +23,7 @@
#include <unotools/unotoolsdllapi.h>
#include <com/sun/star/uno/Type.hxx>
#include <memory>
+#include <mutex>
namespace com::sun::star::uno { template <typename > class Reference; }
@@ -82,7 +83,7 @@ namespace utl
*/
OConfigurationValueContainer(
const css::uno::Reference< css::uno::XComponentContext >& _rxORB,
- ::osl::Mutex& _rAccessSafety,
+ std::mutex& _rAccessSafety,
const char* _pConfigLocation,
const sal_Int32 _nLevels
);