summaryrefslogtreecommitdiff
path: root/framework/source/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-20 15:14:42 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-20 15:15:10 +0100
commitc641f300f09ec0e520846b09e12bf8041299a6cf (patch)
treef820852cfba364390b0e622b4dc8416327fd6485 /framework/source/inc
parente0d936ef7b7fd6b57cdd5ccadddcbd84bd4bb359 (diff)
Use an osl::Mutex directly
Change-Id: If8ff4fc256e530f6b79cc97cf1f47880c93864bf
Diffstat (limited to 'framework/source/inc')
-rw-r--r--framework/source/inc/accelerators/storageholder.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/inc/accelerators/storageholder.hxx b/framework/source/inc/accelerators/storageholder.hxx
index 8879e0319900..07c0b116c999 100644
--- a/framework/source/inc/accelerators/storageholder.hxx
+++ b/framework/source/inc/accelerators/storageholder.hxx
@@ -21,7 +21,6 @@
#define INCLUDED_FRAMEWORK_SOURCE_INC_ACCELERATORS_STORAGEHOLDER_HXX
#include <accelerators/istoragelistener.hxx>
-#include <threadhelp/threadhelpbase.hxx>
#include <general.h>
#include <stdtypes.h>
@@ -36,7 +35,7 @@ namespace framework
/**
TODO document me
*/
-class StorageHolder : private ThreadHelpBase // attention! Must be the first base class to guarentee right initialize lock ...
+class StorageHolder
{
// types
@@ -68,6 +67,7 @@ class StorageHolder : private ThreadHelpBase // attention! Must be the first bas
// member
private:
+ mutable osl::Mutex m_mutex;
/** @short TODO */
css::uno::Reference< css::embed::XStorage > m_xRoot;