diff options
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);  | 
