aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/raweditor/libkviraweditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/raweditor/libkviraweditor.cpp')
-rw-r--r--src/modules/raweditor/libkviraweditor.cpp23
1 files changed, 10 insertions, 13 deletions
diff --git a/src/modules/raweditor/libkviraweditor.cpp b/src/modules/raweditor/libkviraweditor.cpp
index 06a9060ca..acfc7ea86 100644
--- a/src/modules/raweditor/libkviraweditor.cpp
+++ b/src/modules/raweditor/libkviraweditor.cpp
@@ -28,10 +28,8 @@
#include "KviLocale.h"
#include "KviMainWindow.h"
-
RawEditorWindow * g_pRawEditorWindow = 0;
-
/*
@doc: raweditor.open
@type:
@@ -59,7 +57,7 @@ static bool raweditor_kvs_cmd_open(KviKvsModuleCommandCall *)
static bool raweditor_module_init(KviModule * m)
{
- KVSM_REGISTER_SIMPLE_COMMAND(m,"open",raweditor_kvs_cmd_open);
+ KVSM_REGISTER_SIMPLE_COMMAND(m, "open", raweditor_kvs_cmd_open);
g_pRawEditorWindow = 0;
return true;
}
@@ -78,13 +76,12 @@ static bool raweditor_module_cleanup(KviModule *)
}
KVIRC_MODULE(
- "RawEditor", // module name
- "4.0.0", // module version
- "Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net)", // author & (C)
- "Editor for the script RAW events",
- raweditor_module_init,
- raweditor_module_can_unload,
- 0,
- raweditor_module_cleanup,
- "editor"
-)
+ "RawEditor", // module name
+ "4.0.0", // module version
+ "Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net)", // author & (C)
+ "Editor for the script RAW events",
+ raweditor_module_init,
+ raweditor_module_can_unload,
+ 0,
+ raweditor_module_cleanup,
+ "editor")