r=mkaply, a=blizzard
Timing trap related to destroying windows and nice fix for height of fonts
This commit is contained in:
mkaply%us.ibm.com 2001-04-05 10:11:41 +00:00
Родитель aaad4caae1
Коммит bf7387bf32
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -600,6 +600,9 @@ HDC ps = NULL;
} else {
win = (HWND)mDeviceContext->mWidget;
ps = ::WinGetPS(win);
if (!ps) {
ps = ::WinGetPS(HWND_DESKTOP);
} /* endif */
}
mFont->EnumerateFamilies(FontEnumCallback, this);
@ -954,7 +957,7 @@ NS_IMETHODIMP nsFontMetricsOS2::GetLangGroup(nsIAtom** aLangGroup)
NS_IMETHODIMP
nsFontMetricsOS2::GetNormalLineHeight(nscoord &aHeight)
{
aHeight = mEmHeight + mLeading;
aHeight = mEmDescent + mEmAscent + mLeading;
return NS_OK;
}