summaryrefslogtreecommitdiffstats
path: root/cppuhelper/source/typemanager.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-18 12:58:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-18 13:29:14 +0100
commit88999eb03b788b83d27d1d784f0ec7ba792ac954 (patch)
tree9be3f9fb58128a1a25474ffd3b285be0fa439328 /cppuhelper/source/typemanager.hxx
parentUse cppu::BaseMutex instead of plain osl::Mutex as base (diff)
downloadcore-88999eb03b788b83d27d1d784f0ec7ba792ac954.tar.gz
core-88999eb03b788b83d27d1d784f0ec7ba792ac954.zip
Use cppu::BaseMutex instead of plain osl::Mutex as base
Change-Id: Id169891e60eb0a19899586fd3c9a9325ef9d1236
Diffstat (limited to 'cppuhelper/source/typemanager.hxx')
-rw-r--r--cppuhelper/source/typemanager.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/typemanager.hxx b/cppuhelper/source/typemanager.hxx
index 14a41542cb9e..92976ef92485 100644
--- a/cppuhelper/source/typemanager.hxx
+++ b/cppuhelper/source/typemanager.hxx
@@ -25,8 +25,8 @@
#include "com/sun/star/uno/Reference.hxx"
#include "com/sun/star/uno/RuntimeException.hpp"
#include "com/sun/star/uno/Sequence.hxx"
+#include "cppuhelper/basemutex.hxx"
#include "cppuhelper/compbase4.hxx"
-#include "osl/mutex.hxx"
#include "rtl/ref.hxx"
#include "sal/types.h"
@@ -49,7 +49,7 @@ typedef cppu::WeakComponentImplHelper4<
css::container::XSet, css::reflection::XTypeDescriptionEnumerationAccess >
TypeManager_Base;
-class TypeManager: private osl::Mutex, public TypeManager_Base {
+class TypeManager: private cppu::BaseMutex, public TypeManager_Base {
public:
TypeManager();