diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-12 21:05:40 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-13 07:37:04 +0000 |
commit | 5d75fc9dbbff29e531348a36d5cb49a5ca0d611d (patch) | |
tree | 4411462a5e1f425afdc88e78637d890ae7e4a877 /configmgr/qa | |
parent | 7f32aec63fbc3b79c8f6c28039744f4eaed851a7 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, in configmgr.
Change-Id: I0cf82ab487ed879aa385d6065e908e347c0778e8
Reviewed-on: https://gerrit.libreoffice.org/16964
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'configmgr/qa')
-rw-r--r-- | configmgr/qa/unit/test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/qa/unit/test.cxx b/configmgr/qa/unit/test.cxx index a6954ada4f55..544a808e4832 100644 --- a/configmgr/qa/unit/test.cxx +++ b/configmgr/qa/unit/test.cxx @@ -42,7 +42,7 @@ #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/util/XChangesBatch.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <osl/conditn.hxx> #include <osl/thread.h> #include <osl/thread.hxx> @@ -111,7 +111,7 @@ private: }; class RecursiveTest: - public cppu::WeakImplHelper1< css::beans::XPropertyChangeListener > + public cppu::WeakImplHelper< css::beans::XPropertyChangeListener > { public: RecursiveTest(Test const & theTest, int count, bool * destroyed); |