diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-10 17:50:12 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-20 07:06:22 +0000 |
commit | a890a7696ff5dfc3ec8a012ba59cc04db4a1473d (patch) | |
tree | 9e0d23aadb43f2bbdf3bac2db8aff76307bda5fc /comphelper/qa/string | |
parent | 3f0677b86f4831b011a2baece85cf93c68646cd5 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, for comphelper.
This also includes extra changes in other modules
required accordingly.
Change-Id: Id1537f46f1c90f760a0d8987a6dafa0e1da03b8f
Reviewed-on: https://gerrit.libreoffice.org/16929
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'comphelper/qa/string')
-rw-r--r-- | comphelper/qa/string/test_string.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/qa/string/test_string.cxx b/comphelper/qa/string/test_string.cxx index 8971a4312dfd..478c0fb9f6a3 100644 --- a/comphelper/qa/string/test_string.cxx +++ b/comphelper/qa/string/test_string.cxx @@ -18,7 +18,7 @@ */ #include <comphelper/string.hxx> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/i18n/CharType.hpp> #include "cppunit/TestAssert.h" @@ -88,7 +88,7 @@ void TestString::testIsdigitAsciiString() using namespace ::com::sun::star; -class testCollator : public cppu::WeakImplHelper1< i18n::XCollator > +class testCollator : public cppu::WeakImplHelper< i18n::XCollator > { public: virtual sal_Int32 SAL_CALL compareSubstring( @@ -123,7 +123,7 @@ public: #define IS_DIGIT(CHAR) (((CHAR) >= 48) && ((CHAR <= 57))) -class testBreakIterator : public cppu::WeakImplHelper1< i18n::XBreakIterator > +class testBreakIterator : public cppu::WeakImplHelper< i18n::XBreakIterator > { public: virtual sal_Int32 SAL_CALL nextCharacters( const OUString&, sal_Int32, |