This commit is contained in:
kostello 1998-04-28 22:44:05 +00:00
Родитель 7aa439229c
Коммит 3290c4a875
2 изменённых файлов: 6 добавлений и 4 удалений

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

@ -228,11 +228,12 @@ NS_METHOD nsTableOuterFrame::ResizeReflow(nsIPresContext* aPresContext,
&innerTableMaxElementSize);
#ifdef NOISY_MARGINS
nsIContentPtr content = mInnerTableFrame->GetContent();
nsIContent* content = nsnull;
mInnerTableFrame->GetContent(content);
nsTablePart *table = (nsTablePart*)content;
if (table != nsnull)
table->DumpCellMap();
mInnerTableFrame->ResetColumnLayoutData();
mInnerTableFrame->RecalcLayoutData();
mInnerTableFrame->ListColumnLayoutData(stdout,1);
#endif

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

@ -228,11 +228,12 @@ NS_METHOD nsTableOuterFrame::ResizeReflow(nsIPresContext* aPresContext,
&innerTableMaxElementSize);
#ifdef NOISY_MARGINS
nsIContentPtr content = mInnerTableFrame->GetContent();
nsIContent* content = nsnull;
mInnerTableFrame->GetContent(content);
nsTablePart *table = (nsTablePart*)content;
if (table != nsnull)
table->DumpCellMap();
mInnerTableFrame->ResetColumnLayoutData();
mInnerTableFrame->RecalcLayoutData();
mInnerTableFrame->ListColumnLayoutData(stdout,1);
#endif