diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 14:36:15 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 14:36:15 +0000 |
commit | a368a15aef9556291b0ac790c518b1e0774cf76e (patch) | |
tree | 014709ff0ea13cdb9ed3ed2cba6d21651966d720 /plugins/Console/src/init.cpp | |
parent | 581a7a4fca5155decdc48ee1972af806d24c6ceb (diff) |
cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@13617 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Console/src/init.cpp')
-rw-r--r-- | plugins/Console/src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Console/src/init.cpp b/plugins/Console/src/init.cpp index 019dfe453d..0b1e1f83af 100644 --- a/plugins/Console/src/init.cpp +++ b/plugins/Console/src/init.cpp @@ -28,7 +28,7 @@ DWORD mirandaVer; int hLangpack;
HINSTANCE hInst;
-PLUGININFOEX pluginInfoEx={
+PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
@@ -39,7 +39,7 @@ PLUGININFOEX pluginInfoEx={ __AUTHORWEB,
UNICODE_AWARE,
// {23D4F302-D513-45B7-9027-445F29557311}
- {0x23d4f302, 0xd513, 0x45b7, {0x90, 0x27, 0x44, 0x5f, 0x29, 0x55, 0x73, 0x11}}
+ { 0x23d4f302, 0xd513, 0x45b7, { 0x90, 0x27, 0x44, 0x5f, 0x29, 0x55, 0x73, 0x11 } }
};
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
|