diff options
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/dispatch/oxt_handler.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/inc/dispatch/oxt_handler.hxx b/framework/inc/dispatch/oxt_handler.hxx index 162821bc1aa8..85c6312efbf9 100644 --- a/framework/inc/dispatch/oxt_handler.hxx +++ b/framework/inc/dispatch/oxt_handler.hxx @@ -28,6 +28,7 @@ #include <com/sun/star/uno/XComponentContext.hpp> #include <cppuhelper/implbase.hxx> +#include <mutex> namespace framework{ @@ -78,7 +79,7 @@ class Oxt_Handler final : public ::cppu::WeakImplHelper< virtual OUString SAL_CALL detect ( css::uno::Sequence< css::beans::PropertyValue >& lDescriptor ) override; private: - osl::Mutex m_mutex; + std::mutex m_mutex; css::uno::Reference< css::uno::XComponentContext > m_xContext; /// global uno service factory to create new services |