diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-08 11:13:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-12 09:13:32 +0200 |
commit | 527a9a11460a374f5309a0df9c3a58793b023701 (patch) | |
tree | 10bd96f301e211aa9f711c5465c3956d76d6e47d /toolkit | |
parent | 51438e87d0e17a4cc3c991165d22c740b3ac1fc2 (diff) |
loplugin:mergeclasses
Change-Id: I555e3db911a97e798ce9f10c76d7fe187ea550a7
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxtoolkit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index 09751da5e772..7b65fe0dfa74 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -140,13 +140,13 @@ extern "C" typedef vcl::Window* (SAL_CALL *FN_SvtCreateWindow)( vcl::Window* pParent, WinBits nWinBits ); -class VCLXToolkit_Impl +class VCLXToolkitMutexHelper { protected: ::osl::Mutex maMutex; }; -class VCLXToolkit : public VCLXToolkit_Impl, +class VCLXToolkit : public VCLXToolkitMutexHelper, public cppu::WeakComponentImplHelper< css::awt::XToolkitExperimental, css::lang::XServiceInfo > |