summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-18 14:21:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-18 15:27:05 +0100
commit8b28069c8f31ead729dac462e477e19b738690a4 (patch)
tree82d9b2ac0343f91dfaae9e49c6d0b6f06fccabcd /framework
parent0bed494bfcde05bf1f5f04f58610a0d185b0b660 (diff)
Remove unused ThreadHelpBase base
Change-Id: Ib530dec8e812d8ecccba47c70e3d1e9640083378
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/classes/imagewrapper.hxx3
-rw-r--r--framework/source/fwe/classes/imagewrapper.cxx3
2 files changed, 2 insertions, 4 deletions
diff --git a/framework/inc/classes/imagewrapper.hxx b/framework/inc/classes/imagewrapper.hxx
index 36b90449921f..f982f1ea350a 100644
--- a/framework/inc/classes/imagewrapper.hxx
+++ b/framework/inc/classes/imagewrapper.hxx
@@ -20,7 +20,6 @@
#ifndef INCLUDED_FRAMEWORK_INC_CLASSES_IMAGEWRAPPER_HXX
#define INCLUDED_FRAMEWORK_INC_CLASSES_IMAGEWRAPPER_HXX
-#include <threadhelp/threadhelpbase.hxx>
#include <com/sun/star/awt/XBitmap.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <com/sun/star/lang/XTypeProvider.hpp>
@@ -31,7 +30,7 @@
namespace framework
{
-class FWE_DLLPUBLIC ImageWrapper : public ThreadHelpBase , // Struct for right initalization of mutex member! Must be first of baseclasses.
+class FWE_DLLPUBLIC ImageWrapper :
public ::cppu::WeakImplHelper2< ::com::sun::star::awt::XBitmap,
::com::sun::star::lang::XUnoTunnel >
{
diff --git a/framework/source/fwe/classes/imagewrapper.cxx b/framework/source/fwe/classes/imagewrapper.cxx
index 77a1988663d3..f51751d6fd76 100644
--- a/framework/source/fwe/classes/imagewrapper.cxx
+++ b/framework/source/fwe/classes/imagewrapper.cxx
@@ -41,8 +41,7 @@ static Sequence< sal_Int8 > impl_getStaticIdentifier()
}
-ImageWrapper::ImageWrapper( const Image& aImage ) : ThreadHelpBase( &Application::GetSolarMutex() )
- , m_aImage( aImage )
+ImageWrapper::ImageWrapper( const Image& aImage ) : m_aImage( aImage )
{
}