diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-08 10:31:57 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-09 08:12:15 +0000 |
commit | ac142d91b6c141f4f2b8ee4966be8c9b2eb63e82 (patch) | |
tree | ae9b4975642fc0b6c9cd4c843d6180a00d9f5c5d /testtools/source/bridgetest/cppobj.cxx | |
parent | 083c865f9af70a12dfed52b07785e303eb61b397 (diff) |
testtools: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants.
Change-Id: I6c77b9219c772f38005431fed7cd0f4132fab2b9
Reviewed-on: https://gerrit.libreoffice.org/18395
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'testtools/source/bridgetest/cppobj.cxx')
-rw-r--r-- | testtools/source/bridgetest/cppobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testtools/source/bridgetest/cppobj.cxx b/testtools/source/bridgetest/cppobj.cxx index 4b74e4a73b38..8e4ed6a0e44b 100644 --- a/testtools/source/bridgetest/cppobj.cxx +++ b/testtools/source/bridgetest/cppobj.cxx @@ -26,7 +26,7 @@ #include <osl/mutex.hxx> #include <osl/time.h> -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/factory.hxx> #include "cppuhelper/exc_hlp.hxx" #include "cppuhelper/compbase_ex.hxx" @@ -116,7 +116,7 @@ static void assign( TestData & rData, class Test_Impl : public osl::DebugBase<Test_Impl>, - public WeakImplHelper3< XBridgeTest2, XServiceInfo , XRecursiveCall > + public WeakImplHelper< XBridgeTest2, XServiceInfo , XRecursiveCall > { TestData _aData, _aStructData; sal_Int32 m_nLastCallId; |