summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-09-21 15:35:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-09-26 18:18:46 +0200
commit7809e2fe6cd237a547d93293d1ea434d16ccb689 (patch)
tree783b864ffd6aafc5b7ffa2146453891d0af8cceb /include
parentc92a29fd6ef341a1657f90759d20e4f052b45843 (diff)
recursive_mutex -> mutex in BasePrimitive2DImplBase
Change-Id: I99e13b91afbf0d4d36b13e463fde2dec1c4d9e4e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122392 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/drawinglayer/primitive2d/baseprimitive2d.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/drawinglayer/primitive2d/baseprimitive2d.hxx b/include/drawinglayer/primitive2d/baseprimitive2d.hxx
index f76c3e5a1520..c5ffa61d5230 100644
--- a/include/drawinglayer/primitive2d/baseprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/baseprimitive2d.hxx
@@ -37,7 +37,7 @@ class ViewInformation2D;
}
/** This is a custom re-implementation of cppu::WeakComponentImplHelper which uses
- std::recursive_mutex and skips parts of the XComponent stuff.
+ std::mutex and skips parts of the XComponent stuff.
*/
class DRAWINGLAYER_DLLPUBLIC BasePrimitive2DImplBase : public cppu::OWeakObject,
public css::lang::XComponent,
@@ -67,7 +67,7 @@ public:
}
protected:
- mutable std::recursive_mutex m_aMutex;
+ mutable std::mutex m_aMutex;
};
namespace drawinglayer::primitive2d