diff options
| author | 2016-04-29 23:57:30 +0100 | |
|---|---|---|
| committer | 2016-04-29 23:57:48 +0100 | |
| commit | 690dd7a33ddc90678367d73adf313533536e10f2 (patch) | |
| tree | 2276fe7c384ebbc222b40a19c536d5c3c5606ce8 /src/modules/actioneditor/libkviactioneditor.cpp | |
| parent | Add config for clang-format. (diff) | |
| download | KVIrc-690dd7a33ddc90678367d73adf313533536e10f2.tar.gz KVIrc-690dd7a33ddc90678367d73adf313533536e10f2.tar.bz2 KVIrc-690dd7a33ddc90678367d73adf313533536e10f2.zip | |
Apply clang-format
Diffstat (limited to 'src/modules/actioneditor/libkviactioneditor.cpp')
| -rw-r--r-- | src/modules/actioneditor/libkviactioneditor.cpp | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/modules/actioneditor/libkviactioneditor.cpp b/src/modules/actioneditor/libkviactioneditor.cpp index 7714b2cd6..a83450a03 100644 --- a/src/modules/actioneditor/libkviactioneditor.cpp +++ b/src/modules/actioneditor/libkviactioneditor.cpp @@ -30,7 +30,6 @@ ActionEditorWindow * g_pActionEditorWindow = 0; - /* @doc: actioneditor.open @type: @@ -59,7 +58,7 @@ static bool actioneditor_kvs_cmd_open(KviKvsModuleCommandCall *) static bool actioneditor_module_init(KviModule * m) { - KVSM_REGISTER_SIMPLE_COMMAND(m,"open",actioneditor_kvs_cmd_open); + KVSM_REGISTER_SIMPLE_COMMAND(m, "open", actioneditor_kvs_cmd_open); g_pActionEditorWindow = 0; return true; } @@ -78,13 +77,12 @@ static bool actioneditor_module_cleanup(KviModule *) } KVIRC_MODULE( - "ActionEditor", // module name - "4.0.0", // module version - "Copyright (C) 2004 Szymon Stefanek (pragma at kvirc dot net)", // author & (C) - "Editor for the script actions", - actioneditor_module_init, - actioneditor_module_can_unload, - 0, - actioneditor_module_cleanup, - "editor" -) + "ActionEditor", // module name + "4.0.0", // module version + "Copyright (C) 2004 Szymon Stefanek (pragma at kvirc dot net)", // author & (C) + "Editor for the script actions", + actioneditor_module_init, + actioneditor_module_can_unload, + 0, + actioneditor_module_cleanup, + "editor") |
