summaryrefslogtreecommitdiff
path: root/stoc/test/testiadapter.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-04 20:40:13 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-07 07:33:30 +0000
commit20a8b8ac6b4e3c17d28fb88dcc52b1d67ff6b39a (patch)
treeb3365ad2c4ac335f049e43a4bc1814ccdfb7103f /stoc/test/testiadapter.cxx
parent44a488d5b7d72b05834835efd4467a5582c91840 (diff)
stoc: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I34fe287036ca9b8e5edcb121ba70d9a93ab05276 Reviewed-on: https://gerrit.libreoffice.org/18338 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'stoc/test/testiadapter.cxx')
-rw-r--r--stoc/test/testiadapter.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/test/testiadapter.cxx b/stoc/test/testiadapter.cxx
index 5099f886aa75..a540a6b3dd32 100644
--- a/stoc/test/testiadapter.cxx
+++ b/stoc/test/testiadapter.cxx
@@ -35,7 +35,7 @@
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
using namespace test;
@@ -155,7 +155,7 @@ void assign( test::TestData & rData,
}
-class Test_Impl : public WeakImplHelper1< XLanguageBindingTest >
+class Test_Impl : public WeakImplHelper< XLanguageBindingTest >
{
test::TestData _aData, _aStructData;
@@ -278,7 +278,7 @@ public:
virtual void SAL_CALL setRuntimeException( sal_Int32 _runtimeexception ) throw(css::uno::RuntimeException);
};
-class XLB_Invocation : public WeakImplHelper1< XInvocation >
+class XLB_Invocation : public WeakImplHelper< XInvocation >
{
Reference< XLanguageBindingTest > _xLBT;