Describe last changes

This commit is contained in:
Stas Degteff
2011-03-15 07:48:41 +00:00
parent d114b36c12
commit 9dfda10ada
3 changed files with 12 additions and 3 deletions

View File

@@ -208,8 +208,8 @@ bool CMSSpellLang::Init(HKEY hKey, const char *name)
byte engine[_MAX_PATH];
byte dictionary[_MAX_PATH];
unsigned long esize = sizeof(engine);
unsigned long dsize = sizeof(dictionary);
const unsigned long esize = sizeof(engine);
const unsigned long dsize = sizeof(dictionary);
mLIDC = atoi(name);
strcpy(mLangCode, name);
@@ -906,7 +906,7 @@ CSpellSuggestV &CSpellChecker::Suggest()
if (!IsLoaded()) return mSuggest;
CSpellSuggestV allSuggests;
CSpellLangV::iterator it;
for (it = mLangsLoaded.begin(); it != mLangsLoaded.end(); it++)
{