From 1c0172cca4f1e90679321912e20436a7f42f122d Mon Sep 17 00:00:00 2001 From: Goraf <22941576+Goraf@users.noreply.github.com> Date: Sat, 24 Feb 2018 15:32:06 +0100 Subject: more nullptr --- plugins/TabSRMM/src/mim.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/TabSRMM/src/mim.h') diff --git a/plugins/TabSRMM/src/mim.h b/plugins/TabSRMM/src/mim.h index 91d3b13f67..0aea60b9e5 100644 --- a/plugins/TabSRMM/src/mim.h +++ b/plugins/TabSRMM/src/mim.h @@ -84,9 +84,9 @@ public: ~CMimAPI() { if (m_haveBufferedPaint) m_pfnBufferedPaintUninit(); - if (m_hUxTheme != 0) + if (m_hUxTheme != nullptr) FreeLibrary(m_hUxTheme); - if (m_hDwmApi != 0) + if (m_hDwmApi != nullptr) FreeLibrary(m_hDwmApi); if (m_hChatLogLock != INVALID_HANDLE_VALUE) @@ -150,7 +150,7 @@ public: INT_PTR foldersPathChanged(); void startTimer(); - void stopTimer(const char *szMsg = 0); + void stopTimer(const char *szMsg = nullptr); __forceinline __int64 getTimerStart() const { return m_tStart; } __forceinline __int64 getTimerStop() const { return m_tStop; } -- cgit v1.2.3