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/MyDetails/src/mydetails.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/MyDetails/src/mydetails.cpp') diff --git a/plugins/MyDetails/src/mydetails.cpp b/plugins/MyDetails/src/mydetails.cpp index 1c62064f17..459ee0572d 100644 --- a/plugins/MyDetails/src/mydetails.cpp +++ b/plugins/MyDetails/src/mydetails.cpp @@ -97,7 +97,7 @@ static int MainInit(WPARAM, LPARAM) mi.flags = CMIF_UNICODE; mi.root = hMenuRoot; - mi.hIcolibItem = NULL; + mi.hIcolibItem = nullptr; if (protocols->CanSetAvatars()) { SET_UID(mi, 0xe5b2d79e, 0xd25a, 0x4f72, 0xa4, 0x1a, 0x21, 0xfd, 0x48, 0x6b, 0xb5, 0x6); @@ -153,7 +153,7 @@ extern "C" __declspec(dllexport) int Load() // Options InitOptions(); - if (IcoLib_GetIcon("LISTENING_TO_ICON") == NULL) + if (IcoLib_GetIcon("LISTENING_TO_ICON") == nullptr) Icon_Register(hInst, LPGEN("Contact list"), iconList, 1); Icon_Register(hInst, LPGEN("My details"), iconList + 1, _countof(iconList) - 1); -- cgit v1.2.3