changed signature of GetFont,changed to scroll it into view only if it isn't visible b=905,18649 r=dcone,troy

This commit is contained in:
rods%netscape.com 2000-01-25 15:24:48 +00:00
Родитель f7ebac37c6
Коммит cea53d478a
2 изменённых файлов: 8 добавлений и 10 удалений

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

@ -222,7 +222,7 @@ nsFileControlFrame::ScrollIntoView(nsIPresContext* aPresContext)
nsCOMPtr<nsIPresShell> presShell;
aPresContext->GetShell(getter_AddRefs(presShell));
presShell->ScrollFrameIntoView(this,
NS_PRESSHELL_SCROLL_ANYWHERE,NS_PRESSHELL_SCROLL_ANYWHERE);
NS_PRESSHELL_SCROLL_IF_NOT_VISIBLE,NS_PRESSHELL_SCROLL_IF_NOT_VISIBLE);
}
}
@ -468,10 +468,9 @@ nsFileControlFrame::GetFormContent(nsIContent*& aContent) const
NS_IMETHODIMP
nsFileControlFrame::GetFont(nsIPresContext* aPresContext,
nsFont& aFont)
const nsFont*& aFont)
{
nsFormControlHelper::GetFont(this, aPresContext, mStyleContext, aFont);
return NS_OK;
return nsFormControlHelper::GetFont(this, aPresContext, mStyleContext, aFont);
}
nscoord
nsFileControlFrame::GetVerticalInsidePadding(nsIPresContext* aPresContext,

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

@ -222,7 +222,7 @@ nsFileControlFrame::ScrollIntoView(nsIPresContext* aPresContext)
nsCOMPtr<nsIPresShell> presShell;
aPresContext->GetShell(getter_AddRefs(presShell));
presShell->ScrollFrameIntoView(this,
NS_PRESSHELL_SCROLL_ANYWHERE,NS_PRESSHELL_SCROLL_ANYWHERE);
NS_PRESSHELL_SCROLL_IF_NOT_VISIBLE,NS_PRESSHELL_SCROLL_IF_NOT_VISIBLE);
}
}
@ -468,10 +468,9 @@ nsFileControlFrame::GetFormContent(nsIContent*& aContent) const
NS_IMETHODIMP
nsFileControlFrame::GetFont(nsIPresContext* aPresContext,
nsFont& aFont)
const nsFont*& aFont)
{
nsFormControlHelper::GetFont(this, aPresContext, mStyleContext, aFont);
return NS_OK;
return nsFormControlHelper::GetFont(this, aPresContext, mStyleContext, aFont);
}
nscoord
nsFileControlFrame::GetVerticalInsidePadding(nsIPresContext* aPresContext,