From b6f6cf85abaf93ac99683aefbc81e981c5b14e22 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 16:19:53 +0100 Subject: loplugin:nullptr (automatic rewrite; Mac-specific code) Change-Id: Iaa14c583c55c3582e33a1d073ea92b388cd6f3a4 --- shell/source/backends/localebe/localebackend.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'shell/source/backends/localebe') diff --git a/shell/source/backends/localebe/localebackend.cxx b/shell/source/backends/localebe/localebackend.cxx index 66acbc3e7698..a9014050c5d0 100644 --- a/shell/source/backends/localebe/localebackend.cxx +++ b/shell/source/backends/localebe/localebackend.cxx @@ -97,14 +97,14 @@ namespace /* private */ CFStringRef ImplGetAppPreference(const char* pref) { - CFStringRef csPref = CFStringCreateWithCString(NULL, pref, kCFStringEncodingASCII); + CFStringRef csPref = CFStringCreateWithCString(nullptr, pref, kCFStringEncodingASCII); CFStringGuard csRefGuard(csPref); CFTypeRef ref = CFPreferencesCopyAppValue(csPref, kCFPreferencesCurrentApplication); CFTypeRefGuard refGuard(ref); - if (ref == NULL) - return NULL; + if (ref == nullptr) + return nullptr; CFStringRef sref = (CFGetTypeID(ref) == CFArrayGetTypeID()) ? static_cast(CFArrayGetValueAtIndex(static_cast(ref), 0)) : static_cast(ref); @@ -122,14 +122,14 @@ namespace /* private */ OUStringBuffer aLocaleBuffer; aLocaleBuffer.append("en-US"); // initialize with fallback value - if (sref != NULL) + if (sref != nullptr) { // split the string into substrings; the first two (if there are two) substrings // are language and country - CFArrayRef subs = CFStringCreateArrayBySeparatingStrings(NULL, sref, CFSTR("_")); + CFArrayRef subs = CFStringCreateArrayBySeparatingStrings(nullptr, sref, CFSTR("_")); CFArrayGuard subsGuard(subs); - if (subs != NULL) + if (subs != nullptr) { aLocaleBuffer.setLength(0); // clear buffer which still contains fallback value -- cgit