diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-08-03 20:25:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-04 08:42:17 +0200 |
commit | e643f8703b85668a396676e99ec7e9ee2133368c (patch) | |
tree | 32ddb35e65c292c4373178086a206ffbd3ea3d78 /toolkit/inc | |
parent | e8d4f0df075a7033dffa9f6a255d99cf595d1ad3 (diff) |
osl::Mutex->std::mutex in VCLXBitmap
Change-Id: I436f9079468a365622a91d015fddbe5f8fa923d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119946
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit/inc')
-rw-r--r-- | toolkit/inc/awt/vclxbitmap.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/inc/awt/vclxbitmap.hxx b/toolkit/inc/awt/vclxbitmap.hxx index 61be1e4047ff..97475d7000c8 100644 --- a/toolkit/inc/awt/vclxbitmap.hxx +++ b/toolkit/inc/awt/vclxbitmap.hxx @@ -26,7 +26,7 @@ #include <com/sun/star/util/XAccounting.hpp> #include <comphelper/servicehelper.hxx> #include <cppuhelper/implbase.hxx> -#include <osl/mutex.hxx> +#include <mutex> #include <vcl/bitmapex.hxx> @@ -38,10 +38,10 @@ class VCLXBitmap final : public cppu::WeakImplHelper< css::lang::XUnoTunnel, css::util::XAccounting> { - ::osl::Mutex maMutex; + std::mutex maMutex; BitmapEx maBitmap; - ::osl::Mutex& GetMutex() { return maMutex; } + std::mutex& GetMutex() { return maMutex; } public: |