Replace remaining uses of NULL with nullptr
Follow-up to #38736 (these uses were likely added after this PR was merged).
This commit is contained in:
parent
c11502711e
commit
5b16020846
32 changed files with 98 additions and 98 deletions
|
|
@ -70,7 +70,7 @@ static uint64_t load_address() {
|
|||
}
|
||||
|
||||
static void handle_crash(int sig) {
|
||||
if (OS::get_singleton() == NULL) {
|
||||
if (OS::get_singleton() == nullptr) {
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
@ -105,7 +105,7 @@ static void handle_crash(int sig) {
|
|||
if (dladdr(bt_buffer[i], &info) && info.dli_sname) {
|
||||
if (info.dli_sname[0] == '_') {
|
||||
int status;
|
||||
char *demangled = abi::__cxa_demangle(info.dli_sname, NULL, 0, &status);
|
||||
char *demangled = abi::__cxa_demangle(info.dli_sname, nullptr, 0, &status);
|
||||
|
||||
if (status == 0 && demangled) {
|
||||
snprintf(fname, 1024, "%s", demangled);
|
||||
|
|
@ -167,9 +167,9 @@ void CrashHandler::disable() {
|
|||
return;
|
||||
|
||||
#ifdef CRASH_HANDLER_ENABLED
|
||||
signal(SIGSEGV, NULL);
|
||||
signal(SIGFPE, NULL);
|
||||
signal(SIGILL, NULL);
|
||||
signal(SIGSEGV, nullptr);
|
||||
signal(SIGFPE, nullptr);
|
||||
signal(SIGILL, nullptr);
|
||||
#endif
|
||||
|
||||
disabled = true;
|
||||
|
|
|
|||
|
|
@ -1640,7 +1640,7 @@ String DisplayServerOSX::get_name() const {
|
|||
}
|
||||
|
||||
const NSMenu *DisplayServerOSX::_get_menu_root(const String &p_menu_root) const {
|
||||
const NSMenu *menu = NULL;
|
||||
const NSMenu *menu = nullptr;
|
||||
if (p_menu_root == "") {
|
||||
// Main menu.x
|
||||
menu = [NSApp mainMenu];
|
||||
|
|
@ -1655,13 +1655,13 @@ const NSMenu *DisplayServerOSX::_get_menu_root(const String &p_menu_root) const
|
|||
}
|
||||
if (menu == apple_menu) {
|
||||
// Do not allow to change Apple menu.
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
return menu;
|
||||
}
|
||||
|
||||
NSMenu *DisplayServerOSX::_get_menu_root(const String &p_menu_root) {
|
||||
NSMenu *menu = NULL;
|
||||
NSMenu *menu = nullptr;
|
||||
if (p_menu_root == "") {
|
||||
// Main menu.
|
||||
menu = [NSApp mainMenu];
|
||||
|
|
@ -1678,7 +1678,7 @@ NSMenu *DisplayServerOSX::_get_menu_root(const String &p_menu_root) {
|
|||
}
|
||||
if (menu == apple_menu) {
|
||||
// Do not allow to change Apple menu.
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
return menu;
|
||||
}
|
||||
|
|
@ -3029,7 +3029,7 @@ void DisplayServerOSX::cursor_set_shape(CursorShape p_shape) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (cursors[p_shape] != NULL) {
|
||||
if (cursors[p_shape] != nullptr) {
|
||||
[cursors[p_shape] set];
|
||||
} else {
|
||||
switch (p_shape) {
|
||||
|
|
@ -3202,9 +3202,9 @@ void DisplayServerOSX::cursor_set_custom_image(const RES &p_cursor, CursorShape
|
|||
[nsimage release];
|
||||
} else {
|
||||
// Reset to default system cursor
|
||||
if (cursors[p_shape] != NULL) {
|
||||
if (cursors[p_shape] != nullptr) {
|
||||
[cursors[p_shape] release];
|
||||
cursors[p_shape] = NULL;
|
||||
cursors[p_shape] = nullptr;
|
||||
}
|
||||
|
||||
CursorShape c = cursor_shape;
|
||||
|
|
@ -3759,12 +3759,12 @@ DisplayServerOSX::DisplayServerOSX(const String &p_rendering_driver, WindowMode
|
|||
|
||||
// Register to be notified on keyboard layout changes
|
||||
CFNotificationCenterAddObserver(CFNotificationCenterGetDistributedCenter(),
|
||||
NULL, keyboard_layout_changed,
|
||||
kTISNotifySelectedKeyboardInputSourceChanged, NULL,
|
||||
nullptr, keyboard_layout_changed,
|
||||
kTISNotifySelectedKeyboardInputSourceChanged, nullptr,
|
||||
CFNotificationSuspensionBehaviorDeliverImmediately);
|
||||
|
||||
// Register to be notified on displays arrangement changes
|
||||
CGDisplayRegisterReconfigurationCallback(displays_arrangement_changed, NULL);
|
||||
CGDisplayRegisterReconfigurationCallback(displays_arrangement_changed, nullptr);
|
||||
|
||||
// Menu bar setup must go between sharedApplication above and
|
||||
// finishLaunching below, in order to properly emulate the behavior
|
||||
|
|
@ -3854,7 +3854,7 @@ DisplayServerOSX::DisplayServerOSX(const String &p_rendering_driver, WindowMode
|
|||
context_vulkan = memnew(VulkanContextOSX);
|
||||
if (context_vulkan->initialize() != OK) {
|
||||
memdelete(context_vulkan);
|
||||
context_vulkan = NULL;
|
||||
context_vulkan = nullptr;
|
||||
r_error = ERR_CANT_CREATE;
|
||||
ERR_FAIL_MSG("Could not initialize Vulkan");
|
||||
}
|
||||
|
|
@ -3926,8 +3926,8 @@ DisplayServerOSX::~DisplayServerOSX() {
|
|||
}
|
||||
#endif
|
||||
|
||||
CFNotificationCenterRemoveObserver(CFNotificationCenterGetDistributedCenter(), NULL, kTISNotifySelectedKeyboardInputSourceChanged, NULL);
|
||||
CGDisplayRemoveReconfigurationCallback(displays_arrangement_changed, NULL);
|
||||
CFNotificationCenterRemoveObserver(CFNotificationCenterGetDistributedCenter(), nullptr, kTISNotifySelectedKeyboardInputSourceChanged, nullptr);
|
||||
CGDisplayRemoveReconfigurationCallback(displays_arrangement_changed, nullptr);
|
||||
|
||||
cursors_cache.clear();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ String OS_OSX::get_unique_id() const {
|
|||
|
||||
if (serial_number.is_empty()) {
|
||||
io_service_t platformExpert = IOServiceGetMatchingService(kIOMasterPortDefault, IOServiceMatching("IOPlatformExpertDevice"));
|
||||
CFStringRef serialNumberAsCFString = NULL;
|
||||
CFStringRef serialNumberAsCFString = nullptr;
|
||||
if (platformExpert) {
|
||||
serialNumberAsCFString = (CFStringRef)IORegistryEntryCreateCFProperty(platformExpert, CFSTR(kIOPlatformSerialNumberKey), kCFAllocatorDefault, 0);
|
||||
IOObjectRelease(platformExpert);
|
||||
|
|
@ -158,7 +158,7 @@ void OS_OSX::delete_main_loop() {
|
|||
if (!main_loop)
|
||||
return;
|
||||
memdelete(main_loop);
|
||||
main_loop = NULL;
|
||||
main_loop = nullptr;
|
||||
}
|
||||
|
||||
String OS_OSX::get_name() const {
|
||||
|
|
@ -346,7 +346,7 @@ Error OS_OSX::move_to_trash(const String &p_path) {
|
|||
}
|
||||
|
||||
OS_OSX::OS_OSX() {
|
||||
main_loop = NULL;
|
||||
main_loop = nullptr;
|
||||
force_quit = false;
|
||||
|
||||
Vector<Logger *> loggers;
|
||||
|
|
|
|||
|
|
@ -38,12 +38,12 @@ const char *VulkanContextOSX::_get_platform_surface_extension() const {
|
|||
Error VulkanContextOSX::window_create(DisplayServer::WindowID p_window_id, id p_window, int p_width, int p_height) {
|
||||
VkMacOSSurfaceCreateInfoMVK createInfo;
|
||||
createInfo.sType = VK_STRUCTURE_TYPE_MACOS_SURFACE_CREATE_INFO_MVK;
|
||||
createInfo.pNext = NULL;
|
||||
createInfo.pNext = nullptr;
|
||||
createInfo.flags = 0;
|
||||
createInfo.pView = p_window;
|
||||
|
||||
VkSurfaceKHR surface;
|
||||
VkResult err = vkCreateMacOSSurfaceMVK(_get_instance(), &createInfo, NULL, &surface);
|
||||
VkResult err = vkCreateMacOSSurfaceMVK(_get_instance(), &createInfo, nullptr, &surface);
|
||||
ERR_FAIL_COND_V(err, ERR_CANT_CREATE);
|
||||
return _window_create(p_window_id, surface, p_width, p_height);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue