This commit is contained in:
scc%netscape.com 2000-05-15 12:33:01 +00:00
Родитель a2c17e609b
Коммит fc2852a319
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -787,7 +787,7 @@ FontEnumCallback(const nsString& aFamily, PRBool aGeneric, void *aData)
nsAutoString* familyList = (nsAutoString*)aData;
// XXX unreliable if aFamily is a substring of another family already in the list
if (familyList->Find(aFamily, PR_TRUE) == kNotFound) {
familyList->Append(',');
familyList->Append(PRUnichar(','));
// XXX could enclose in quotes if weird font problems develop
familyList->Append(aFamily);
}