Fix the build by doing the correct style struct casting foo.

This commit is contained in:
sfraser%netscape.com 2001-04-13 01:09:06 +00:00
Родитель 8a34b6891b
Коммит fa5c968dc3
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -925,7 +925,7 @@ void nsCaret::DrawCaret()
if (frameRect.height == 0)
{
const nsStyleFont* fontStyle;
mLastCaretFrame->GetStyleData(eStyleStruct_Font, (const nsStyleFont*&)fontStyle);
mLastCaretFrame->GetStyleData(eStyleStruct_Font, (const nsStyleStruct*&)fontStyle);
mRendContext->SetFont(fontStyle->mFont);
nsCOMPtr<nsIFontMetrics> fm;
mRendContext->GetFontMetrics(*getter_AddRefs(fm));

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

@ -925,7 +925,7 @@ void nsCaret::DrawCaret()
if (frameRect.height == 0)
{
const nsStyleFont* fontStyle;
mLastCaretFrame->GetStyleData(eStyleStruct_Font, (const nsStyleFont*&)fontStyle);
mLastCaretFrame->GetStyleData(eStyleStruct_Font, (const nsStyleStruct*&)fontStyle);
mRendContext->SetFont(fontStyle->mFont);
nsCOMPtr<nsIFontMetrics> fm;
mRendContext->GetFontMetrics(*getter_AddRefs(fm));