diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-20 11:49:25 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-20 15:04:13 +0100 |
commit | 8114055880ef14999058cd549dd7bda83cbf1c69 (patch) | |
tree | ca7d46481fa093f8b2de7713018b7e221a9424a5 /framework/inc/jobs | |
parent | f9c73e458f0be91f0034f98b3876cfbd4233371b (diff) |
Use an osl::Mutex directly
Change-Id: I37264f25b5ad89f72d25f78808ff796f581536c4
Diffstat (limited to 'framework/inc/jobs')
-rw-r--r-- | framework/inc/jobs/configaccess.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/jobs/configaccess.hxx b/framework/inc/jobs/configaccess.hxx index de0ee8a6d774..be5b464b6257 100644 --- a/framework/inc/jobs/configaccess.hxx +++ b/framework/inc/jobs/configaccess.hxx @@ -20,7 +20,6 @@ #ifndef INCLUDED_FRAMEWORK_INC_JOBS_CONFIGACCESS_HXX #define INCLUDED_FRAMEWORK_INC_JOBS_CONFIGACCESS_HXX -#include <threadhelp/threadhelpbase.hxx> #include <general.h> #include <com/sun/star/lang/XMultiServiceFactory.hpp> @@ -39,7 +38,7 @@ namespace framework{ instead of using soecialize config items of the svtools project. This class can wrapp such configuration access. */ -class FWI_DLLPUBLIC ConfigAccess : public ThreadHelpBase +class FWI_DLLPUBLIC ConfigAccess { @@ -60,6 +59,7 @@ class FWI_DLLPUBLIC ConfigAccess : public ThreadHelpBase // member private: + mutable osl::Mutex m_mutex; /** reference to the uno service manager |