diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/propertyhandler.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/propertyhandler.hxx b/extensions/source/propctrlr/propertyhandler.hxx index faad4b062f47..37ad084fcbe4 100644 --- a/extensions/source/propctrlr/propertyhandler.hxx +++ b/extensions/source/propctrlr/propertyhandler.hxx @@ -38,6 +38,7 @@ #include <com/sun/star/inspection/XPropertyHandler.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <osl/interlck.h> +#include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase.hxx> #include <cppuhelper/implbase1.hxx> #include <comphelper/uno3.hxx> @@ -68,7 +69,8 @@ namespace pcr > PropertyHandler_Base; /** the base class for property handlers */ - class PropertyHandler : public PropertyHandler_Base + class PropertyHandler : public ::cppu::BaseMutex + , public PropertyHandler_Base { private: /// cache for getSupportedProperties @@ -81,7 +83,6 @@ namespace pcr PropertyChangeListeners m_aPropertyListeners; protected: - mutable ::osl::Mutex m_aMutex; /// the context in which the instance was created css::uno::Reference< css::uno::XComponentContext > m_xContext; /// the component we're inspecting |