diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-15 15:26:43 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-18 07:12:26 +0000 |
commit | 0a4c482a8aa2e421668a6607916c9656a3f18b19 (patch) | |
tree | 512c8a253b9e12f4626f75485916c6ac25726856 /i18npool/inc | |
parent | 370a26f7804d12da26abe007f1d80a00c4fdaeb4 (diff) |
i18npool: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants.
Change-Id: I0381de7fde198df74556355984bdaba2ecdedd4b
Reviewed-on: https://gerrit.libreoffice.org/17768
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'i18npool/inc')
-rw-r--r-- | i18npool/inc/breakiteratorImpl.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/calendarImpl.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/cclass_unicode.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/characterclassificationImpl.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/collatorImpl.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/collator_unicode.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/defaultnumberingprovider.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/indexentrysupplier.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/indexentrysupplier_common.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/inputsequencechecker.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/localedata.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/nativenumbersupplier.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/numberformatcode.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/ordinalsuffix.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/textconversion.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/textconversionImpl.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/transliterationImpl.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/transliteration_commonclass.hxx | 4 | ||||
-rw-r--r-- | i18npool/inc/unoscripttypedetector.hxx | 4 |
19 files changed, 38 insertions, 38 deletions
diff --git a/i18npool/inc/breakiteratorImpl.hxx b/i18npool/inc/breakiteratorImpl.hxx index f97133c3e55e..4dc6ee9f30e0 100644 --- a/i18npool/inc/breakiteratorImpl.hxx +++ b/i18npool/inc/breakiteratorImpl.hxx @@ -30,7 +30,7 @@ #include <com/sun/star/i18n/CharacterIteratorMode.hpp> #include <com/sun/star/i18n/CharType.hpp> #include <com/sun/star/i18n/XLocaleData.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <vector> @@ -39,7 +39,7 @@ namespace com { namespace sun { namespace star { namespace i18n { // class BreakIterator -class BreakIteratorImpl : public cppu::WeakImplHelper2 +class BreakIteratorImpl : public cppu::WeakImplHelper < XBreakIterator, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/calendarImpl.hxx b/i18npool/inc/calendarImpl.hxx index 0f67c1eb4eea..7d5964f83d2c 100644 --- a/i18npool/inc/calendarImpl.hxx +++ b/i18npool/inc/calendarImpl.hxx @@ -23,7 +23,7 @@ #include <com/sun/star/i18n/CalendarDisplayCode.hpp> #include <com/sun/star/i18n/CalendarFieldIndex.hpp> #include <com/sun/star/i18n/CalendarDisplayIndex.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/uno/XComponentContext.hpp> #include <vector> @@ -34,7 +34,7 @@ namespace com { namespace sun { namespace star { namespace i18n { -class CalendarImpl : public cppu::WeakImplHelper2 +class CalendarImpl : public cppu::WeakImplHelper < com::sun::star::i18n::XCalendar4, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/cclass_unicode.hxx b/i18npool/inc/cclass_unicode.hxx index 3ff2aed9fcaf..90f2c0e42d9a 100644 --- a/i18npool/inc/cclass_unicode.hxx +++ b/i18npool/inc/cclass_unicode.hxx @@ -22,7 +22,7 @@ #include <com/sun/star/i18n/XNativeNumberSupplier.hpp> #include <com/sun/star/i18n/XCharacterClassification.hpp> #include <com/sun/star/i18n/XLocaleData4.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <transliteration_body.hxx> @@ -35,7 +35,7 @@ namespace com { namespace sun { namespace star { namespace i18n { typedef sal_uInt32 UPT_FLAG_TYPE; -class cclass_Unicode : public cppu::WeakImplHelper2 < XCharacterClassification, css::lang::XServiceInfo > +class cclass_Unicode : public cppu::WeakImplHelper < XCharacterClassification, css::lang::XServiceInfo > { public: cclass_Unicode(const com::sun::star::uno::Reference < com::sun::star::uno::XComponentContext >& rxContext ); diff --git a/i18npool/inc/characterclassificationImpl.hxx b/i18npool/inc/characterclassificationImpl.hxx index 59f84b769d11..091d7dfcf4ec 100644 --- a/i18npool/inc/characterclassificationImpl.hxx +++ b/i18npool/inc/characterclassificationImpl.hxx @@ -20,7 +20,7 @@ #define INCLUDED_I18NPOOL_INC_CHARACTERCLASSIFICATIONIMPL_HXX #include <com/sun/star/i18n/XCharacterClassification.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <vector> #include <com/sun/star/i18n/KCharacterType.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> @@ -28,7 +28,7 @@ namespace com { namespace sun { namespace star { namespace i18n { -class CharacterClassificationImpl : public cppu::WeakImplHelper2 +class CharacterClassificationImpl : public cppu::WeakImplHelper < XCharacterClassification, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/collatorImpl.hxx b/i18npool/inc/collatorImpl.hxx index 60fd79fae798..0acd37aa9f06 100644 --- a/i18npool/inc/collatorImpl.hxx +++ b/i18npool/inc/collatorImpl.hxx @@ -25,7 +25,7 @@ #include <com/sun/star/i18n/XCollator.hpp> #include <com/sun/star/lang/Locale.hpp> #include <cppuhelper/weak.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <sal/alloca.h> #include <vector> @@ -34,7 +34,7 @@ namespace com { namespace sun { namespace star { namespace i18n { // ---------------------------------------------------- // class CollatorImpl // ---------------------------------------------------- -class CollatorImpl : public cppu::WeakImplHelper2 +class CollatorImpl : public cppu::WeakImplHelper < XCollator, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/collator_unicode.hxx b/i18npool/inc/collator_unicode.hxx index 951de9c7f4c1..dd67088b9319 100644 --- a/i18npool/inc/collator_unicode.hxx +++ b/i18npool/inc/collator_unicode.hxx @@ -22,7 +22,7 @@ #include <com/sun/star/uno/Reference.h> #include <com/sun/star/i18n/XCollator.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <osl/module.h> #include <unicode/tblcoll.h> @@ -33,7 +33,7 @@ namespace com { namespace sun { namespace star { namespace i18n { -class Collator_Unicode : public cppu::WeakImplHelper2 < XCollator, com::sun::star::lang::XServiceInfo > +class Collator_Unicode : public cppu::WeakImplHelper < XCollator, com::sun::star::lang::XServiceInfo > { public: // Constructors diff --git a/i18npool/inc/defaultnumberingprovider.hxx b/i18npool/inc/defaultnumberingprovider.hxx index 572b1d296d08..7e1269d2a028 100644 --- a/i18npool/inc/defaultnumberingprovider.hxx +++ b/i18npool/inc/defaultnumberingprovider.hxx @@ -23,7 +23,7 @@ #include <com/sun/star/text/XNumberingFormatter.hpp> #include <com/sun/star/text/XNumberingTypeInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <cppuhelper/implbase4.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/i18n/XTransliteration.hpp> #include <com/sun/star/container/XHierarchicalNameAccess.hpp> @@ -31,7 +31,7 @@ namespace com { namespace sun { namespace star { namespace i18n { -class DefaultNumberingProvider : public cppu::WeakImplHelper4 +class DefaultNumberingProvider : public cppu::WeakImplHelper < com::sun::star::text::XDefaultNumberingProvider, com::sun::star::text::XNumberingFormatter, diff --git a/i18npool/inc/indexentrysupplier.hxx b/i18npool/inc/indexentrysupplier.hxx index 56f4fcc83736..f350326f7285 100644 --- a/i18npool/inc/indexentrysupplier.hxx +++ b/i18npool/inc/indexentrysupplier.hxx @@ -20,7 +20,7 @@ #define INCLUDED_I18NPOOL_INC_INDEXENTRYSUPPLIER_HXX #include <com/sun/star/i18n/XExtendedIndexEntrySupplier.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/uno/XComponentContext.hpp> @@ -29,7 +29,7 @@ namespace com { namespace sun { namespace star { namespace i18n { // class IndexEntrySupplier -class IndexEntrySupplier : public cppu::WeakImplHelper2 +class IndexEntrySupplier : public cppu::WeakImplHelper < com::sun::star::i18n::XExtendedIndexEntrySupplier, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/indexentrysupplier_common.hxx b/i18npool/inc/indexentrysupplier_common.hxx index a743f55b6f4c..4464213b24a8 100644 --- a/i18npool/inc/indexentrysupplier_common.hxx +++ b/i18npool/inc/indexentrysupplier_common.hxx @@ -21,7 +21,7 @@ #define INCLUDED_I18NPOOL_INC_INDEXENTRYSUPPLIER_COMMON_HXX #include <com/sun/star/i18n/XExtendedIndexEntrySupplier.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <collatorImpl.hxx> @@ -31,7 +31,7 @@ namespace com { namespace sun { namespace star { namespace i18n { // class IndexEntrySupplier_Common -class IndexEntrySupplier_Common : public cppu::WeakImplHelper2 +class IndexEntrySupplier_Common : public cppu::WeakImplHelper < com::sun::star::i18n::XExtendedIndexEntrySupplier, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/inputsequencechecker.hxx b/i18npool/inc/inputsequencechecker.hxx index e985177b4e5f..2daeeb0fc655 100644 --- a/i18npool/inc/inputsequencechecker.hxx +++ b/i18npool/inc/inputsequencechecker.hxx @@ -20,7 +20,7 @@ #define INCLUDED_I18NPOOL_INC_INPUTSEQUENCECHECKER_HXX #include <comphelper/processfactory.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/i18n/XExtendedInputSequenceChecker.hpp> @@ -32,7 +32,7 @@ namespace com { namespace sun { namespace star { namespace i18n { // class InputSequenceCheckerImpl -class InputSequenceCheckerImpl : public cppu::WeakImplHelper2 +class InputSequenceCheckerImpl : public cppu::WeakImplHelper < com::sun::star::i18n::XExtendedInputSequenceChecker, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/localedata.hxx b/i18npool/inc/localedata.hxx index e5adbe714134..fb567ad407ad 100644 --- a/i18npool/inc/localedata.hxx +++ b/i18npool/inc/localedata.hxx @@ -26,7 +26,7 @@ #include <com/sun/star/i18n/XLocaleData4.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppu/macros.hxx> #include <com/sun/star/uno/Reference.h> @@ -62,7 +62,7 @@ inline bool operator ==(const com::sun::star::lang::Locale& l1, const com::sun:: return l1.Language == l2.Language && l1.Country == l2.Country && l1.Variant == l2.Variant; }; -class LocaleDataImpl : public cppu::WeakImplHelper2 +class LocaleDataImpl : public cppu::WeakImplHelper < com::sun::star::i18n::XLocaleData4, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/nativenumbersupplier.hxx b/i18npool/inc/nativenumbersupplier.hxx index 14d17f6e678a..189ead2c561f 100644 --- a/i18npool/inc/nativenumbersupplier.hxx +++ b/i18npool/inc/nativenumbersupplier.hxx @@ -22,7 +22,7 @@ #include <com/sun/star/i18n/XNativeNumberSupplier.hpp> #include <com/sun/star/i18n/NativeNumberMode.hpp> #include <com/sun/star/i18n/NativeNumberXmlAttributes.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> namespace com { namespace sun { namespace star { namespace i18n { @@ -30,7 +30,7 @@ namespace com { namespace sun { namespace star { namespace i18n { // ---------------------------------------------------- // class NativeNumberSupplierService // ---------------------------------------------------- -class NativeNumberSupplierService : public cppu::WeakImplHelper2 +class NativeNumberSupplierService : public cppu::WeakImplHelper < com::sun::star::i18n::XNativeNumberSupplier, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/numberformatcode.hxx b/i18npool/inc/numberformatcode.hxx index 466acb24240a..fa1e43a1d4ec 100644 --- a/i18npool/inc/numberformatcode.hxx +++ b/i18npool/inc/numberformatcode.hxx @@ -22,14 +22,14 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <comphelper/processfactory.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/i18n/XNumberFormatCode.hpp> #include <com/sun/star/i18n/XLocaleData4.hpp> #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> -class NumberFormatCodeMapper : public cppu::WeakImplHelper2 +class NumberFormatCodeMapper : public cppu::WeakImplHelper < ::com::sun::star::i18n::XNumberFormatCode, ::com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/ordinalsuffix.hxx b/i18npool/inc/ordinalsuffix.hxx index 36a6d18c0e03..02d455363730 100644 --- a/i18npool/inc/ordinalsuffix.hxx +++ b/i18npool/inc/ordinalsuffix.hxx @@ -21,14 +21,14 @@ #define INCLUDED_I18NPOOL_INC_ORDINALSUFFIX_HXX #include <com/sun/star/i18n/XOrdinalSuffix.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/Locale.hpp> namespace com { namespace sun { namespace star { namespace i18n { -class OrdinalSuffixService : public cppu::WeakImplHelper2 +class OrdinalSuffixService : public cppu::WeakImplHelper < XOrdinalSuffix, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/textconversion.hxx b/i18npool/inc/textconversion.hxx index a7f81ce18d3f..fa050de677ca 100644 --- a/i18npool/inc/textconversion.hxx +++ b/i18npool/inc/textconversion.hxx @@ -25,7 +25,7 @@ #include <com/sun/star/linguistic2/XConversionDictionary.hpp> #include <com/sun/star/linguistic2/XConversionDictionaryList.hpp> #include <com/sun/star/uno/XComponentContext.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <osl/module.h> namespace com { namespace sun { namespace star { namespace i18n { @@ -33,7 +33,7 @@ namespace com { namespace sun { namespace star { namespace i18n { // class TextConversionService -class TextConversionService: public cppu::WeakImplHelper2 +class TextConversionService: public cppu::WeakImplHelper < com::sun::star::i18n::XExtendedTextConversion, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/textconversionImpl.hxx b/i18npool/inc/textconversionImpl.hxx index 93fdabfd4ddd..366ba81acd5c 100644 --- a/i18npool/inc/textconversionImpl.hxx +++ b/i18npool/inc/textconversionImpl.hxx @@ -23,14 +23,14 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/i18n/XExtendedTextConversion.hpp> #include <com/sun/star/uno/XComponentContext.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> namespace com { namespace sun { namespace star { namespace i18n { // class TextConversion -class TextConversionImpl : public cppu::WeakImplHelper2 +class TextConversionImpl : public cppu::WeakImplHelper < com::sun::star::i18n::XExtendedTextConversion, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/transliterationImpl.hxx b/i18npool/inc/transliterationImpl.hxx index d31fa9fbd90c..fb2160150143 100644 --- a/i18npool/inc/transliterationImpl.hxx +++ b/i18npool/inc/transliterationImpl.hxx @@ -21,7 +21,7 @@ #include <com/sun/star/i18n/XLocaleData4.hpp> #include <com/sun/star/i18n/XExtendedTransliteration.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <sal/types.h> @@ -36,7 +36,7 @@ namespace com { namespace sun { namespace star { namespace i18n { #define RETURN_DEBUG_NUMBER #endif -class TransliterationImpl : public cppu::WeakImplHelper2 +class TransliterationImpl : public cppu::WeakImplHelper < com::sun::star::i18n::XExtendedTransliteration, com::sun::star::lang::XServiceInfo diff --git a/i18npool/inc/transliteration_commonclass.hxx b/i18npool/inc/transliteration_commonclass.hxx index d9580b236d28..32e511af2924 100644 --- a/i18npool/inc/transliteration_commonclass.hxx +++ b/i18npool/inc/transliteration_commonclass.hxx @@ -22,13 +22,13 @@ #include <com/sun/star/i18n/XExtendedTransliteration.hpp> #include <com/sun/star/i18n/TransliterationType.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <rtl/ustrbuf.h> #include <rtl/ustring.hxx> namespace com { namespace sun { namespace star { namespace i18n { -class transliteration_commonclass : public cppu::WeakImplHelper2< +class transliteration_commonclass : public cppu::WeakImplHelper< com::sun::star::i18n::XExtendedTransliteration, com::sun::star::lang::XServiceInfo > diff --git a/i18npool/inc/unoscripttypedetector.hxx b/i18npool/inc/unoscripttypedetector.hxx index eae7a0513ce4..0f6c84b51436 100644 --- a/i18npool/inc/unoscripttypedetector.hxx +++ b/i18npool/inc/unoscripttypedetector.hxx @@ -22,12 +22,12 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/i18n/XScriptTypeDetector.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> // class UnoScriptTypeDetector -class UnoScriptTypeDetector : public cppu::WeakImplHelper2 +class UnoScriptTypeDetector : public cppu::WeakImplHelper < ::com::sun::star::i18n::XScriptTypeDetector, ::com::sun::star::lang::XServiceInfo |