aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/list/libkvilist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/list/libkvilist.cpp')
-rw-r--r--src/modules/list/libkvilist.cpp4
1 files changed, 2 insertions, 2 deletions
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 <QSplitter>
-KviPointerList<ListWindow> * g_pListWindowList = 0;
+KviPointerList<ListWindow> * 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;
}