Removed obsolete justify-reflow method

This commit is contained in:
kipp 1998-06-26 15:11:53 +00:00
Родитель 4e73a0df94
Коммит 0352d421ad
4 изменённых файлов: 0 добавлений и 28 удалений

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

@ -387,16 +387,6 @@ public:
NS_IMETHOD DidReflow(nsIPresContext& aPresContext,
nsDidReflowStatus aStatus) = 0;
/**
* Post-processing reflow method invoked when justification is enabled.
* This is always called after Reflow()
*
* @param aAvailableSpace The amount of available space that the frame
* should distribute internally.
*/
NS_IMETHOD JustifyReflow(nsIPresContext* aPresContext,
nscoord aAvailableSpace) = 0;
/**
* This call is invoked when content is appended to the content tree.
*

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

@ -1077,12 +1077,6 @@ NS_METHOD nsFrame::Reflow(nsIPresContext* aPresContext,
return NS_OK;
}
NS_METHOD nsFrame::JustifyReflow(nsIPresContext* aPresContext,
nscoord aAvailableSpace)
{
return NS_OK;
}
NS_METHOD nsFrame::ContentAppended(nsIPresShell* aShell,
nsIPresContext* aPresContext,
nsIContent* aContainer)

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

@ -150,8 +150,6 @@ public:
nsReflowMetrics& aDesiredSize,
const nsReflowState& aReflowState,
nsReflowStatus& aStatus);
NS_IMETHOD JustifyReflow(nsIPresContext* aPresContext,
nscoord aAvailableSpace);
NS_IMETHOD ContentAppended(nsIPresShell* aShell,
nsIPresContext* aPresContext,
nsIContent* aContainer);

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

@ -387,16 +387,6 @@ public:
NS_IMETHOD DidReflow(nsIPresContext& aPresContext,
nsDidReflowStatus aStatus) = 0;
/**
* Post-processing reflow method invoked when justification is enabled.
* This is always called after Reflow()
*
* @param aAvailableSpace The amount of available space that the frame
* should distribute internally.
*/
NS_IMETHOD JustifyReflow(nsIPresContext* aPresContext,
nscoord aAvailableSpace) = 0;
/**
* This call is invoked when content is appended to the content tree.
*