This commit is contained in:
pavlov%netscape.com 2000-04-27 21:28:02 +00:00
Родитель b55ce38b78
Коммит e5091e62d1
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -205,10 +205,10 @@ nsAFMObject::CheckBasicFonts(const nsFont &aFont,PRBool aPrimaryOnly)
{
PRInt16 ourfont = -1;
PRInt32 i,curIndex,score;
nsString psfontname;
nsAutoString psfontname;
// have to find the correct fontfamily, weight and style
psfontname.SetString(aFont.name);
psfontname = aFont.name;
// look in the font table for one of the fonts in the passed in list
for(i=0,curIndex=-1;i<NUM_AFM_FONTS;i++){

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

@ -1320,7 +1320,7 @@ nsAutoString fontFamily;
mStates->mFontMetrics = mFontMetrics;
// get the fontfamily we are using, not what we want, but what we are using
fontFamily.SetString(((nsFontMetricsPS*)mFontMetrics)->mAFMInfo->mPSFontInfo->mFamilyName);
fontFamily.AssignWithConversion(((nsFontMetricsPS*)mFontMetrics)->mAFMInfo->mPSFontInfo->mFamilyName);
fontIndex = ((nsFontMetricsPS*)mFontMetrics)->GetFontIndex();
mPSObj->setscriptfont(fontIndex,fontFamily,fontHeight,font->style,font->variant,font->weight,font->decorations);