diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-17 16:15:51 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-17 16:15:51 +0000 |
commit | 2cb8a32203cf2ef237a30f0ffac8e64a9a495c48 (patch) | |
tree | b36e7d6d86415b65bd91a0f359c10797ff43b2b1 /plugins/SpellChecker/spellchecker.cpp | |
parent | 61138785bb35de7bbf7977dd41a91a206aff80b7 (diff) |
cosmetic settings fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@462 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker/spellchecker.cpp')
-rw-r--r-- | plugins/SpellChecker/spellchecker.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/SpellChecker/spellchecker.cpp b/plugins/SpellChecker/spellchecker.cpp index 7207f4a71a..c121b57cda 100644 --- a/plugins/SpellChecker/spellchecker.cpp +++ b/plugins/SpellChecker/spellchecker.cpp @@ -25,13 +25,13 @@ Boston, MA 02111-1307, USA. PLUGININFOEX pluginInfo={ sizeof(PLUGININFOEX), - "Spell Checker", - PLUGIN_MAKE_VERSION(0,2,6,0), - "Spell checker for the message windows. Uses Hunspell to do the checking.", - "Ricardo Pescuma Domenecci, FREAK_THEMIGHTY", - "pescuma@miranda-im.org", - "© 2006-2010 Ricardo Pescuma Domenecci", - "http://pescuma.org/miranda/spellchecker", + __PLUGIN_NAME, + PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM), + __DESCRIPTION, + __AUTHOR, + __AUTHOREMAIL, + __COPYRIGHT, + __AUTHORWEB, UNICODE_AWARE, 0, //doesn't replace anything built-in { 0x36753ae3, 0x840b, 0x4797, { 0x94, 0xa5, 0xfd, 0x9f, 0x58, 0x52, 0xb9, 0x42 } } // {36753AE3-840B-4797-94A5-FD9F5852B942} @@ -192,8 +192,8 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) // add our modules to the KnownModules list CallService("DBEditorpp/RegisterSingleModule", (WPARAM) MODULE_NAME, 0); - // updater plugin support - if(ServiceExists(MS_UPDATE_REGISTER)) + // updater plugin support + if(ServiceExists(MS_UPDATE_REGISTER)) { Update upd = {0}; char szCurrentVersion[30]; @@ -220,10 +220,10 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) upd.pbVersion = (BYTE *)CreateVersionStringPluginEx(&pluginInfo, szCurrentVersion); upd.cpbVersion = (int)strlen((char *)upd.pbVersion); - CallService(MS_UPDATE_REGISTER, 0, (LPARAM)&upd); + CallService(MS_UPDATE_REGISTER, 0, (LPARAM)&upd); } - // Folders plugin support + // Folders plugin support if (ServiceExists(MS_FOLDERS_REGISTER_PATH)) { hDictionariesFolder = FoldersRegisterCustomPathT(LPGEN("Spell Checker"), LPGEN("Dictionaries"), DICTIONARIES_FOLDER); |