summaryrefslogtreecommitdiff
path: root/framework/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-07-21 21:47:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-07-22 21:16:54 +0200
commit9ca9d364581e64b8e7ba9b4cd8d745ba22b2a2d8 (patch)
treeccd5a5e6373b910c718d49514ecf4195b4242efc /framework/inc
parentae3c5ef23b8b91c97cfe99adbcd831ee34f9dbf3 (diff)
osl::Mutex->std::mutex in StatusIndicatorFactory
Change-Id: I23c6765e5932288ce439273c600bdbf5017266ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119377 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/inc')
-rw-r--r--framework/inc/helper/statusindicatorfactory.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/inc/helper/statusindicatorfactory.hxx b/framework/inc/helper/statusindicatorfactory.hxx
index f0f46a26ee95..ca8cef12d5fe 100644
--- a/framework/inc/helper/statusindicatorfactory.hxx
+++ b/framework/inc/helper/statusindicatorfactory.hxx
@@ -22,6 +22,7 @@
// Attention: stl headers must(!) be included at first. Otherwise it can make trouble
// with solaris headers ...
#include <vector>
+#include <mutex>
// include files of own module
#include <helper/wakeupthread.hxx>
@@ -124,7 +125,7 @@ class StatusIndicatorFactory final : public ::cppu::WeakImplHelper<
// member
private:
- osl::Mutex m_mutex;
+ std::mutex m_mutex;
/** stack with all current indicator children. */
IndicatorStack m_aStack;