diff options
| author | 2016-05-01 16:16:09 +0100 | |
|---|---|---|
| committer | 2016-05-01 16:16:09 +0100 | |
| commit | fe375f69972cd912739c0d68fa4951d35de90e5e (patch) | |
| tree | 71bd2c2b59d6be62d7c18588a417e5aa39ab233c /src/modules/links/libkvilinks.cpp | |
| parent | libkvidcc: fix $dcc.currentSpeed documentation add missing @short and fix rig... (diff) | |
| parent | Apply clang-tidy: modernize-loop-convert (diff) | |
| download | KVIrc-fe375f69972cd912739c0d68fa4951d35de90e5e.tar.gz KVIrc-fe375f69972cd912739c0d68fa4951d35de90e5e.tar.bz2 KVIrc-fe375f69972cd912739c0d68fa4951d35de90e5e.zip | |
Merge pull request #1962 from DarthGandalf/modernize
Apply several fixes of clang-tidy
Diffstat (limited to 'src/modules/links/libkvilinks.cpp')
| -rw-r--r-- | src/modules/links/libkvilinks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/links/libkvilinks.cpp b/src/modules/links/libkvilinks.cpp index b35d9a846..16f5d7068 100644 --- a/src/modules/links/libkvilinks.cpp +++ b/src/modules/links/libkvilinks.cpp @@ -31,7 +31,7 @@ #include <QSplitter> -KviPointerList<LinksWindow> * g_pLinksWindowList = 0; +KviPointerList<LinksWindow> * g_pLinksWindowList = nullptr; /* @doc: links.open @@ -93,7 +93,7 @@ static bool links_module_cleanup(KviModule *) while(g_pLinksWindowList->first()) g_pLinksWindowList->first()->die(); delete g_pLinksWindowList; - g_pLinksWindowList = 0; + g_pLinksWindowList = nullptr; return true; } |
