diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-11 14:37:45 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-11 14:37:45 +0000 |
commit | 9587ecd839b2bd5c45aaa8c33d24118b8da2cea3 (patch) | |
tree | d9dac0e2451697602ef978a9c36104147cf19a39 /plugins/IEHistory/src/IEHistory.cpp | |
parent | 8bfb11ba69d6c35961e8881f7b88d2f7b26c0622 (diff) |
cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@13535 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEHistory/src/IEHistory.cpp')
-rw-r--r-- | plugins/IEHistory/src/IEHistory.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/IEHistory/src/IEHistory.cpp b/plugins/IEHistory/src/IEHistory.cpp index babf561f3d..01da6e43e0 100644 --- a/plugins/IEHistory/src/IEHistory.cpp +++ b/plugins/IEHistory/src/IEHistory.cpp @@ -28,22 +28,22 @@ HINSTANCE hInstance; HANDLE hOpenWindowsList = NULL; HMODULE hUxTheme = 0; -BOOL (WINAPI *MyEnableThemeDialogTexture)(HANDLE, DWORD) = NULL; +BOOL(WINAPI *MyEnableThemeDialogTexture)(HANDLE, DWORD) = NULL; PLUGININFOEX pluginInfo = { sizeof(PLUGININFOEX), __PLUGIN_DISPLAY_NAME, __VERSION_DWORD, __DESC, - __AUTHOR,__AUTHOREMAIL, + __AUTHOR, __AUTHOREMAIL, __COPYRIGHT, __AUTHORWEB, UNICODE_AWARE, // {2f093b88-f389-44f1-9e2a-37c29194203a} - {0x2f093b88, 0xf389, 0x44f1, {0x9e, 0x2a, 0x37, 0xc2, 0x91, 0x94, 0x20, 0x3a}} + { 0x2f093b88, 0xf389, 0x44f1, { 0x9e, 0x2a, 0x37, 0xc2, 0x91, 0x94, 0x20, 0x3a } } }; -extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion) +extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion) { return &pluginInfo; } @@ -70,10 +70,10 @@ extern "C" int __declspec(dllexport) Load(void) /// all initialization here hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_HISTORYICON)); - hOpenWindowsList = (HANDLE) CallService(MS_UTILS_ALLOCWINDOWLIST, 0, 0); + hOpenWindowsList = (HANDLE)CallService(MS_UTILS_ALLOCWINDOWLIST, 0, 0); InitServices(); - + /// menu items CLISTMENUITEM menuItem = { sizeof(CLISTMENUITEM) }; menuItem.ptszName = LPGENT("View &history"); @@ -82,7 +82,7 @@ extern "C" int __declspec(dllexport) Load(void) menuItem.hIcon = hIcon; menuItem.pszService = MS_HISTORY_SHOWCONTACTHISTORY; Menu_AddContactMenuItem(&menuItem); -/// @todo (White-Tiger#1#08/19/14): fully implement System History someday^^ + /// @todo (White-Tiger#1#08/19/14): fully implement System History someday^^ menuItem.ptszName = LPGENT("&System History"); Menu_AddMainMenuItem(&menuItem); |