Fix linux build

This commit is contained in:
Stas Degteff 2006-04-11 12:00:42 +00:00
parent fad4dba1fe
commit 6201dd49c7

View File

@ -1117,7 +1117,9 @@ int GMenuSChecker::Run(CSpellChecker &schecker, const char *word)
for (idx = 0; idx < langcount; idx++) for (idx = 0; idx < langcount; idx++)
{ {
#if defined(__WIN32__) && !defined(GCFG_NO_MYSPELL)
uint type = langs[idx]->GetSpellType(); uint type = langs[idx]->GetSpellType();
#endif
const char *code = langs[idx]->GetLangCode(); const char *code = langs[idx]->GetLangCode();
std::string buff = " "; std::string buff = " ";
@ -1132,7 +1134,7 @@ int GMenuSChecker::Run(CSpellChecker &schecker, const char *word)
buff += " ?? "; buff += " ?? ";
#endif #endif
#if !defined(GCFG_NO_MYSPELL) #if defined(__WIN32__) && !defined(GCFG_NO_MYSPELL)
if (type == SCHECKET_TYPE_MSSPELL) if (type == SCHECKET_TYPE_MSSPELL)
{ {
char langANSI[100]; char langANSI[100];