diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-18 17:45:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-19 08:27:56 +0100 |
commit | 4da1eb8404c726a22c2b43aff544d26ad5d42af6 (patch) | |
tree | 59539461d96563c185922393a64f8ec517a20b7a /framework/inc | |
parent | 9278df2c21fed09b6b10465ca33b227ad7c49b41 (diff) |
Use SolarMutexGuard directly
Change-Id: Ica2736fd9e249bfa88cfd8fd094af83deadf7737
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/tabwin/tabwindow.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/tabwin/tabwindow.hxx b/framework/inc/tabwin/tabwindow.hxx index f0dbce002352..aa9c1c749ebb 100644 --- a/framework/inc/tabwin/tabwindow.hxx +++ b/framework/inc/tabwin/tabwindow.hxx @@ -21,7 +21,6 @@ #define INCLUDED_FRAMEWORK_INC_TABWIN_TABWINDOW_HXX #include <stdtypes.h> -#include <threadhelp/threadhelpbase.hxx> #include <macros/generic.hxx> #include <macros/xinterface.hxx> #include <macros/xtypeprovider.hxx> @@ -39,6 +38,7 @@ #include <com/sun/star/awt/XSimpleTabController.hpp> #include <com/sun/star/awt/XTabListener.hpp> +#include <cppuhelper/basemutex.hxx> #include <cppuhelper/propshlp.hxx> #include <cppuhelper/interfacecontainer.hxx> #include <cppuhelper/weak.hxx> @@ -55,7 +55,7 @@ class TabWindow : public ::com::sun::star::lang::XTypeProvider , public ::com::sun::star::awt::XWindowListener , public ::com::sun::star::awt::XTopWindowListener , public ::com::sun::star::awt::XSimpleTabController , - protected ThreadHelpBase , // Struct for right initalization of mutex member! Must be first of baseclasses. + private cppu::BaseMutex, public ::cppu::OBroadcastHelper , public ::cppu::OPropertySetHelper , // => XPropertySet / XFastPropertySet / XMultiPropertySet public ::cppu::OWeakObject |