diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-05 18:44:27 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-07 07:31:26 +0000 |
commit | 44a488d5b7d72b05834835efd4467a5582c91840 (patch) | |
tree | c756f8de93312fea5e290f9e64bcd22923c5767c /svtools/source/hatchwindow/hatchwindowfactory.cxx | |
parent | 899c21ce5db0f4c3ad0bb6c9680e147f578b0894 (diff) |
svtools: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I935dde5c4c83e0f00d1b7dd5ee2500190d80fb69
Reviewed-on: https://gerrit.libreoffice.org/18352
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svtools/source/hatchwindow/hatchwindowfactory.cxx')
-rw-r--r-- | svtools/source/hatchwindow/hatchwindowfactory.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/hatchwindow/hatchwindowfactory.cxx b/svtools/source/hatchwindow/hatchwindowfactory.cxx index d31c989cefa0..62c4c78405ad 100644 --- a/svtools/source/hatchwindow/hatchwindowfactory.cxx +++ b/svtools/source/hatchwindow/hatchwindowfactory.cxx @@ -20,7 +20,7 @@ #include <com/sun/star/embed/XHatchWindowFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/uno/XComponentContext.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <rtl/ref.hxx> #include <vcl/svapp.hxx> @@ -31,7 +31,7 @@ using namespace ::com::sun::star; namespace { -class OHatchWindowFactory : public ::cppu::WeakImplHelper2< +class OHatchWindowFactory : public ::cppu::WeakImplHelper< embed::XHatchWindowFactory, lang::XServiceInfo > { |