Fixed: Compilation

This commit is contained in:
kervala 2016-03-18 22:26:43 +01:00
parent 2a53238ba3
commit 5caef15f94

View file

@ -382,11 +382,9 @@ std::string CI18N::getSystemLanguageCode ()
}
}
#else
std::string lang = NLMISC::toLower(lang);
// only keep 2 first characters
if (lang.size() > 1)
_SystemLanguageCode = lang.substr(0, 2);
_SystemLanguageCode = NLMISC::toLower(lang).substr(0, 2);
#endif
}
}