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/AuthState/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/AuthState/src') diff --git a/plugins/AuthState/src/main.cpp b/plugins/AuthState/src/main.cpp index 9d971a72c7..db2de1db13 100644 --- a/plugins/AuthState/src/main.cpp +++ b/plugins/AuthState/src/main.cpp @@ -99,7 +99,7 @@ int onExtraImageApplying(WPARAM hContact, LPARAM lParam) if (hContact == NULL) return 0; int iIcon = getIconToUse((MCONTACT)hContact, lParam); - ExtraIcon_SetIcon(hExtraIcon, (MCONTACT)hContact, iIcon == -1 ? NULL : iconList[iIcon].hIcolib); + ExtraIcon_SetIcon(hExtraIcon, (MCONTACT)hContact, iIcon == -1 ? nullptr : iconList[iIcon].hIcolib); return 0; } -- cgit v1.2.3