diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:16:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:28 +0100 |
commit | 6a33fb16bdd91055c2e13b7b1823093b000ca60d (patch) | |
tree | 31652a5f38c54f792699e2502b8574b5f7012a79 /i18npool/inc | |
parent | 25bb667cff3cdd5d2a446f5eea036f9084a3fa17 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I7af8d14bfe7337fea3f18dbbd41eb32e0f7ae331
Diffstat (limited to 'i18npool/inc')
-rw-r--r-- | i18npool/inc/breakiterator_unicode.hxx | 2 | ||||
-rw-r--r-- | i18npool/inc/transliteration_Ignore.hxx | 8 | ||||
-rw-r--r-- | i18npool/inc/xdictionary.hxx | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/i18npool/inc/breakiterator_unicode.hxx b/i18npool/inc/breakiterator_unicode.hxx index 94b9f85b6fe9..2d41c01210f5 100644 --- a/i18npool/inc/breakiterator_unicode.hxx +++ b/i18npool/inc/breakiterator_unicode.hxx @@ -82,7 +82,7 @@ protected: icu::BreakIterator* aBreakIterator; css::lang::Locale maLocale; - BI_Data() : ut(NULL), aBreakIterator(NULL) + BI_Data() : ut(nullptr), aBreakIterator(nullptr) { } ~BI_Data() diff --git a/i18npool/inc/transliteration_Ignore.hxx b/i18npool/inc/transliteration_Ignore.hxx index 672ace293463..e6573b6adfaa 100644 --- a/i18npool/inc/transliteration_Ignore.hxx +++ b/i18npool/inc/transliteration_Ignore.hxx @@ -101,8 +101,8 @@ class ignore##name : public transliteration_Ignore {\ public:\ ignore##name () {\ func = nullptr;\ - table = 0;\ - map = 0;\ + table = nullptr;\ + map = nullptr;\ transliterationName = "ignore"#name;\ implementationName = "com.sun.star.i18n.Transliteration.ignore"#name;\ };\ @@ -122,8 +122,8 @@ class ignore##name : public transliteration_Ignore {\ public:\ ignore##name () {\ func = nullptr;\ - table = 0;\ - map = 0;\ + table = nullptr;\ + map = nullptr;\ transliterationName = "ignore"#name;\ implementationName = "com.sun.star.i18n.Transliteration.ignore"#name;\ };\ diff --git a/i18npool/inc/xdictionary.hxx b/i18npool/inc/xdictionary.hxx index f7c0110d39fd..ed6b269aa3c0 100644 --- a/i18npool/inc/xdictionary.hxx +++ b/i18npool/inc/xdictionary.hxx @@ -48,11 +48,11 @@ struct xdictionarydata const sal_Int32 * lenArray; const sal_Unicode* dataArea; xdictionarydata() : - existMark( NULL ), - index1( NULL ), - index2( NULL ), - lenArray( NULL ), - dataArea( NULL ) + existMark( nullptr ), + index1( nullptr ), + index2( nullptr ), + lenArray( nullptr ), + dataArea( nullptr ) { } }; |