Backout of commits for bug 97299. This causes assertions, which means we

missed some spots where name was getting set.
This commit is contained in:
rjesup%wgate.com 2006-02-07 01:12:53 +00:00
Родитель 9510ec7eea
Коммит e291f0548a
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -152,7 +152,6 @@ nsPrintOptions::SetFontNamePointSize(nsString& aFontName, PRInt32 aPointSize)
{ {
if (mDefaultFont != nsnull && aFontName.Length() > 0 && aPointSize > 0) { if (mDefaultFont != nsnull && aFontName.Length() > 0 && aPointSize > 0) {
mDefaultFont->name = aFontName; mDefaultFont->name = aFontName;
mDefaultFont->name.ToLowerCase();
mDefaultFont->size = NSIntPointsToTwips(aPointSize); mDefaultFont->size = NSIntPointsToTwips(aPointSize);
} }
return NS_OK; return NS_OK;