summaryrefslogtreecommitdiff
path: root/framework/inc/helper/statusindicatorfactory.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-20 11:37:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-20 15:04:13 +0100
commit4f843f2bc87952131085cf7e88ab69b6e18fbe37 (patch)
tree8d4caa7d7c8c7b4c44fd1fdea61e2bba3218f682 /framework/inc/helper/statusindicatorfactory.hxx
parented15977626b71ad4e23461596ee4994f79557470 (diff)
Use an osl::Mutex directly
Change-Id: Icb655df89fcb3c9dac0f25d0fdb5383d24914877
Diffstat (limited to 'framework/inc/helper/statusindicatorfactory.hxx')
-rw-r--r--framework/inc/helper/statusindicatorfactory.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/framework/inc/helper/statusindicatorfactory.hxx b/framework/inc/helper/statusindicatorfactory.hxx
index 57c8271fd503..3e68c9310ef3 100644
--- a/framework/inc/helper/statusindicatorfactory.hxx
+++ b/framework/inc/helper/statusindicatorfactory.hxx
@@ -27,7 +27,6 @@
// include files of own module
#include <helper/wakeupthread.hxx>
-#include <threadhelp/threadhelpbase.hxx>
#include <macros/xinterface.hxx>
#include <macros/xtypeprovider.hxx>
#include <macros/xserviceinfo.hxx>
@@ -151,8 +150,7 @@ typedef ::std::vector< IndicatorInfo > IndicatorStack;
@devstatus ready to use
@threadsafe yes
*/
-class StatusIndicatorFactory : private ThreadHelpBase
- , public ::cppu::WeakImplHelper4<
+class StatusIndicatorFactory : public ::cppu::WeakImplHelper4<
css::lang::XServiceInfo
, css::lang::XInitialization
, css::task::XStatusIndicatorFactory
@@ -161,6 +159,7 @@ class StatusIndicatorFactory : private ThreadHelpBase
// member
private:
+ osl::Mutex m_mutex;
/** stack with all current indicator children. */
IndicatorStack m_aStack;