From a7c24ca48995cf2bf436156302f96b91bf135409 Mon Sep 17 00:00:00 2001 From: Goraf <22941576+Goraf@users.noreply.github.com> Date: Mon, 13 Nov 2017 15:03:31 +0100 Subject: Code modernize ... * replace 0/NULL with nullptr [using clang-tidy] --- plugins/MirLua/src/m_hotkeys.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/MirLua/src/m_hotkeys.cpp') diff --git a/plugins/MirLua/src/m_hotkeys.cpp b/plugins/MirLua/src/m_hotkeys.cpp index 2661197d2a..4988c80332 100644 --- a/plugins/MirLua/src/m_hotkeys.cpp +++ b/plugins/MirLua/src/m_hotkeys.cpp @@ -58,7 +58,7 @@ static int hotkeys_Unregister(lua_State *L) return 0; } -static const char *mods[] = { "shift", "ctrl", "alt", "ext", NULL }; +static const char *mods[] = { "shift", "ctrl", "alt", "ext", nullptr }; static int hotkeys_MakeHotkey(lua_State *L) { @@ -69,11 +69,11 @@ static int hotkeys_MakeHotkey(lua_State *L) mod = luaL_checkinteger(L, 1); break; case LUA_TSTRING: - mod = (1 << (luaL_checkoption(L, 1, NULL, mods) - 1)); + mod = (1 << (luaL_checkoption(L, 1, nullptr, mods) - 1)); break; case LUA_TTABLE: for (lua_pushnil(L); lua_next(L, 1); lua_pop(L, 1)) - mod |= (1 << (luaL_checkoption(L, -1, NULL, mods) - 1)); + mod |= (1 << (luaL_checkoption(L, -1, nullptr, mods) - 1)); break; default: luaL_argerror(L, 1, luaL_typename(L, 1)); @@ -92,7 +92,7 @@ static luaL_Reg hotkeysApi[] = { "Register", hotkeys_Register }, { "Unregister", hotkeys_Unregister }, - { NULL, NULL } + { nullptr, nullptr } }; LUAMOD_API int luaopen_m_hotkeys(lua_State *L) -- cgit v1.2.3