summaryrefslogtreecommitdiff
path: root/slideshow/test/testview.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-04 18:25:57 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-07 07:37:07 +0000
commitca7bab0561aa6afa399f1d2f449402545768859e (patch)
treebfde19ec9d99544ecf51cfb551a0ac5d76634d9a /slideshow/test/testview.cxx
parent9ea32ccd6e45e2d914e09413a4164045aff9f0fd (diff)
slideshow: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I3160235d0e6253626a8facbfed33e3c252505cbf Reviewed-on: https://gerrit.libreoffice.org/18336 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'slideshow/test/testview.cxx')
-rw-r--r--slideshow/test/testview.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/test/testview.cxx b/slideshow/test/testview.cxx
index 0901f1c866b9..9538e928872c 100644
--- a/slideshow/test/testview.cxx
+++ b/slideshow/test/testview.cxx
@@ -22,7 +22,7 @@
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
-#include <cppuhelper/compbase1.hxx>
+#include <cppuhelper/compbase.hxx>
#include <cppuhelper/basemutex.hxx>
#include <comphelper/make_shared_from_uno.hxx>
@@ -45,7 +45,7 @@ namespace target = slideshow::internal;
using namespace ::com::sun::star;
// our test view subject
-typedef ::cppu::WeakComponentImplHelper1< presentation::XSlideShowView > ViewBase;
+typedef ::cppu::WeakComponentImplHelper< presentation::XSlideShowView > ViewBase;
class ImplTestView : public TestView,
private cppu::BaseMutex,
public ViewBase