aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/eventeditor/libkvieventeditor.cpp
diff options
context:
space:
mode:
authorGravatar Alexey Sokolov2016-05-01 16:16:09 +0100
committerGravatar Alexey Sokolov2016-05-01 16:16:09 +0100
commitfe375f69972cd912739c0d68fa4951d35de90e5e (patch)
tree71bd2c2b59d6be62d7c18588a417e5aa39ab233c /src/modules/eventeditor/libkvieventeditor.cpp
parentlibkvidcc: fix $dcc.currentSpeed documentation add missing @short and fix rig... (diff)
parentApply clang-tidy: modernize-loop-convert (diff)
downloadKVIrc-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/eventeditor/libkvieventeditor.cpp')
-rw-r--r--src/modules/eventeditor/libkvieventeditor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/eventeditor/libkvieventeditor.cpp b/src/modules/eventeditor/libkvieventeditor.cpp
index a2ce4d8fa..04c4b1600 100644
--- a/src/modules/eventeditor/libkvieventeditor.cpp
+++ b/src/modules/eventeditor/libkvieventeditor.cpp
@@ -28,7 +28,7 @@
#include "KviLocale.h"
#include "KviMainWindow.h"
-EventEditorWindow * g_pEventEditorWindow = 0;
+EventEditorWindow * g_pEventEditorWindow = nullptr;
/*
@doc: eventeditor.open
@@ -61,20 +61,20 @@ static bool eventeditor_module_init(KviModule * m)
KVSM_REGISTER_SIMPLE_COMMAND(m, "open", eventeditor_kvs_cmd_open);
- g_pEventEditorWindow = 0;
+ g_pEventEditorWindow = nullptr;
return true;
}
static bool eventeditor_module_can_unload(KviModule *)
{
- return (g_pEventEditorWindow == 0);
+ return (g_pEventEditorWindow == nullptr);
}
static bool eventeditor_module_cleanup(KviModule *)
{
if(g_pEventEditorWindow && g_pMainWindow)
g_pMainWindow->closeWindow(g_pEventEditorWindow);
- g_pEventEditorWindow = 0;
+ g_pEventEditorWindow = nullptr;
return true;
}