add one selector to access the csid id of the resource

This commit is contained in:
ftang%netscape.com 1998-10-05 14:27:13 +00:00
Родитель dc3b3d42ac
Коммит 36f605762e
1 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -1415,7 +1415,17 @@ void INTL_SetCCCCvtflag_SendHankakuKana(CCCDataObject obj, XP_Bool flag)
#endif /* MOZ_MAIL_NEWS */
static int16 xp_res_csid = CS_DEFAULT;
INTLCharSetID INTL_GetCharSetID(INTL_CharSetID_Selector selector)
{
return FE_GetCharSetID(selector);
if( INTL_XPResourcesCsidSel == selector)
{
if(CS_DEFAULT == xp_res_csid)
{
xp_res_csid = INTL_CharSetNameToID(
INTL_ResourceCharSet());
}
return xp_res_csid;
}
return FE_GetCharSetID(selector);
}