Catching up with recent changes in layout

This commit is contained in:
rbs%maths.uq.edu.au 1999-11-14 22:15:05 +00:00
Родитель 86ed1f5c42
Коммит 79f03df3a2
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -50,7 +50,7 @@ struct nsCharMetrics {
descent = aCharMetrics.descent;
}
nsCharMetrics(const nsReflowMetrics& aReflowMetrics) {
nsCharMetrics(const nsHTMLReflowMetrics& aReflowMetrics) {
width = aReflowMetrics.width;
height = aReflowMetrics.height;
ascent = aReflowMetrics.ascent;

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

@ -355,7 +355,7 @@ nsMathMLContainerFrame::SetInitialChildList(nsIPresContext& aPresContext,
if (inlineFrame) {
// create a new anonymous block frame to wrap this child...
nsIFrame* anonymous;
rv = NS_NewAnonymousBlockFrame(&anonymous);
rv = NS_NewBlockFrame(&anonymous);
if (NS_FAILED(rv))
return rv;
nsCOMPtr<nsIStyleContext> newStyleContext;