Checked in workaround for tree-view/apprunner problem of assert in GetColumnWidth()

git-svn-id: svn://10.0.0.236/trunk@49787 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com
1999-10-05 02:41:36 +00:00
parent 016eba860a
commit 9598e1278f
2 changed files with 16 additions and 0 deletions

View File

@@ -278,8 +278,16 @@ nsTableFrame::nsTableFrame()
mBits.mCellMapValid = PR_TRUE;
mBits.mIsInvariantWidth = PR_FALSE;
mBits.mHasScrollableRowGroup = PR_FALSE;
// XXX We really shouldn't do this, but if we don't then we'll have a
// problem with the tree control...
#if 0
mColumnWidthsLength = 0;
mColumnWidths = nsnull;
#else
mColumnWidthsLength = 10;
mColumnWidths = new PRInt32[mColumnWidthsLength];
nsCRT::memset (mColumnWidths, 0, mColumnWidthsLength*sizeof(PRInt32));
#endif
mCellMap = new nsCellMap(0, 0);
}

View File

@@ -278,8 +278,16 @@ nsTableFrame::nsTableFrame()
mBits.mCellMapValid = PR_TRUE;
mBits.mIsInvariantWidth = PR_FALSE;
mBits.mHasScrollableRowGroup = PR_FALSE;
// XXX We really shouldn't do this, but if we don't then we'll have a
// problem with the tree control...
#if 0
mColumnWidthsLength = 0;
mColumnWidths = nsnull;
#else
mColumnWidthsLength = 10;
mColumnWidths = new PRInt32[mColumnWidthsLength];
nsCRT::memset (mColumnWidths, 0, mColumnWidthsLength*sizeof(PRInt32));
#endif
mCellMap = new nsCellMap(0, 0);
}