Exemplo n.º 1
0
bool LocaleRoster::SetLocale(const char *name)
{
	if(!name)
		return false;
	
	for(int32 i=0; i<fLocaleList.CountItems(); i++)
	{
		Locale *locale = (Locale*)fLocaleList.ItemAt(i);
		if(locale && strcmp(locale->Name(),name)==0)
		{
			SetLocale(locale);
			return true;
		}
	}
	return false;
}