From 505d0768f8392e3c4775425dd97f41e1c829ef44 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 30 Apr 2016 18:23:42 +0100 Subject: Apply clang-tidy: modernize-use-nullptr --- src/modules/list/libkvilist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/list/libkvilist.cpp') diff --git a/src/modules/list/libkvilist.cpp b/src/modules/list/libkvilist.cpp index a20948673..63dd0a923 100644 --- a/src/modules/list/libkvilist.cpp +++ b/src/modules/list/libkvilist.cpp @@ -31,7 +31,7 @@ #include -KviPointerList * g_pListWindowList = 0; +KviPointerList * g_pListWindowList = nullptr; /* @doc: list.open @@ -82,7 +82,7 @@ static bool list_module_cleanup(KviModule *) while(g_pListWindowList->first()) g_pListWindowList->first()->die(); delete g_pListWindowList; - g_pListWindowList = 0; + g_pListWindowList = nullptr; return true; } -- cgit v1.3.1-10-gc9f91