From 7c8e7c6b6e16d4a26259a676db32d8776b99817e Mon Sep 17 00:00:00 2001 From: Henry Wilson Date: Wed, 10 Apr 2019 22:07:06 +0100 Subject: Codechange: Use null pointer literal instead of the NULL macro --- src/hotkeys.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/hotkeys.h') diff --git a/src/hotkeys.h b/src/hotkeys.h index fd729a47a..00e8c0c3f 100644 --- a/src/hotkeys.h +++ b/src/hotkeys.h @@ -32,7 +32,7 @@ struct Hotkey { std::vector keycodes; }; -#define HOTKEY_LIST_END Hotkey((uint16)0, NULL, -1) +#define HOTKEY_LIST_END Hotkey((uint16)0, nullptr, -1) struct IniFile; @@ -42,7 +42,7 @@ struct IniFile; struct HotkeyList { typedef EventState (*GlobalHotkeyHandlerFunc)(int hotkey); - HotkeyList(const char *ini_group, Hotkey *items, GlobalHotkeyHandlerFunc global_hotkey_handler = NULL); + HotkeyList(const char *ini_group, Hotkey *items, GlobalHotkeyHandlerFunc global_hotkey_handler = nullptr); ~HotkeyList(); void Load(IniFile *ini); -- cgit v1.2.3-54-g00ecf