summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterPaneFactory.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-01 07:27:20 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-01 07:59:50 +0000
commite15d4b8ee959ce51ebc78fe059c1c769bbc9e6ff (patch)
treea26bb3b914ede3c16d5e39eef001a8e3258cfa2d /sdext/source/presenter/PresenterPaneFactory.hxx
parented33646cdecac866ab480bf5770726b4a5bfa6c9 (diff)
sdext: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I663029b736489b81ed4ccb5f7bd657fbaf091bdf Reviewed-on: https://gerrit.libreoffice.org/18206 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sdext/source/presenter/PresenterPaneFactory.hxx')
-rw-r--r--sdext/source/presenter/PresenterPaneFactory.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/presenter/PresenterPaneFactory.hxx b/sdext/source/presenter/PresenterPaneFactory.hxx
index 98bf788d107b..ec53e017a66f 100644
--- a/sdext/source/presenter/PresenterPaneFactory.hxx
+++ b/sdext/source/presenter/PresenterPaneFactory.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERPANEFACTORY_HXX
#define INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERPANEFACTORY_HXX
-#include <cppuhelper/compbase1.hxx>
+#include <cppuhelper/compbase.hxx>
#include <cppuhelper/basemutex.hxx>
#include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
@@ -38,7 +38,7 @@ namespace sdext { namespace presenter {
class PresenterController;
namespace {
- typedef ::cppu::WeakComponentImplHelper1 <
+ typedef ::cppu::WeakComponentImplHelper <
css::drawing::framework::XResourceFactory
> PresenterPaneFactoryInterfaceBase;
}