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/popupeditor/libkvipopupeditor.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/popupeditor/libkvipopupeditor.cpp')
| -rw-r--r-- | src/modules/popupeditor/libkvipopupeditor.cpp | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/src/modules/popupeditor/libkvipopupeditor.cpp b/src/modules/popupeditor/libkvipopupeditor.cpp index e467dfc7c..720ce5143 100644 --- a/src/modules/popupeditor/libkvipopupeditor.cpp +++ b/src/modules/popupeditor/libkvipopupeditor.cpp @@ -28,10 +28,8 @@ #include "KviLocale.h" #include "KviMainWindow.h" - PopupEditorWindow * g_pPopupEditorWindow = 0; - /* @doc: popupeditor.open @type: @@ -60,7 +58,7 @@ static bool popupeditor_kvs_cmd_open(KviKvsModuleCommandCall *) static bool popupeditor_module_init(KviModule * m) { - KVSM_REGISTER_SIMPLE_COMMAND(m,"open",popupeditor_kvs_cmd_open); + KVSM_REGISTER_SIMPLE_COMMAND(m, "open", popupeditor_kvs_cmd_open); g_pPopupEditorWindow = 0; return true; } @@ -79,13 +77,12 @@ static bool popupeditor_module_cleanup(KviModule *) } KVIRC_MODULE( - "PopupEditor", // module name - "4.0.0", // module version - "Copyright (C) 2008 Szymon Stefanek (pragma at kvirc dot net)", // author & (C) - "Editor for the script popups", - popupeditor_module_init, - popupeditor_module_can_unload, - 0, - popupeditor_module_cleanup, - "editor" -) + "PopupEditor", // module name + "4.0.0", // module version + "Copyright (C) 2008 Szymon Stefanek (pragma at kvirc dot net)", // author & (C) + "Editor for the script popups", + popupeditor_module_init, + popupeditor_module_can_unload, + 0, + popupeditor_module_cleanup, + "editor") |
